The build.prop is a system file that stores a information needed by Android OS to work and behave in a defined way. Some entries can help to fix some issues or speed up the device, but mostly of these so called “tweaks” are nothing but fake. Here are some tweaks that actually work.
EDIT AT YOUR OWN RISK
BACK UP BUILD PROP BEFORE YOU EDIT
1. You will need a rooted phone
2. /System should have read write permission aka RW permission.
To set RW permission to /System , use ES File Explorer!
Open the side pannel in ES Explorer > Click Root Explorer > Mount R/W > Choose RW for /System
TO BACKUP BUILD PROP
1. Go to /System
2. Long press Build.prop
3. Copy to Ext SD
TO EDIT
1. Go to /System
2. Long press Build.prop
3. Open With Text Editor
TWEAKS
1. This tweak can be used to boot quickly & additionally it disables the boot animation too
###
debug.sf.nobootanimation=1
ro.config.hw_quickpoweron=true
persist.sys.shutdown.mode=hibernate
dev.bootcomplete=0
###
2. Change your ROM's name in Setting>About
###
ro.build.display.id=REPLACE_ROM_NAME_NOSPACE_ALLOWED_NOR_STUPID_SYMBOLS
###
3. Change Proximity Sensor Response time
##
mot.proximity.delay=0
ro.lge.proximity.delay=23
##
4. Use your GPU to process the UI instead of the CPU, this helps the CPU to process more non visual information
##
debug.sf.hw = 1
##
5. Cache and Buffering tweak [Internet Tweak]
##
net.tcp.buffersize.default=4096,87380,256960,4096, 16384,256960
net.tcp.buffersize.wifi=4096,87380,256960,4096,163 84,256960
net.tcp.buffersize.umts=4096,87380,256960,4096,163 84,256960
net.tcp.buffersize.gprs=4096,87380,256960,4096,163 84,256960
net.tcp.buffersize.edge=4096,87380,256960,4096,163 84,256960
##
6. Increase number of volume level(steps) during a call
##
ro.config.vc_call_steps=15
##
7. Call bandwidth tweak for better sound quality during call
{MAY NOT WORK WITH SOME OPERATORS}
##
ro.ril.enable.amr.wideband=1
##
8. Faster Video Streaming
##
media.stagefright.enable-player=true
media.stagefright.enable-meta=true
media.stagefright.enable-scan=true
media.stagefright.enable-http=true
media.stagefright.enable-rtsp=true
media.stagefright.enable-record=false
##
9. Better Audio and Video performance
[People report it working but i never tested this]
[Careful]
##
ro.media.enc.jpeg.quality=100
ro.media.dec.jpeg.memcap=8000000
ro.media.enc.hprof.vid.bps=8000000
ro.media.capture.maxres=8m
ro.media.panorama.defres=3264x1840
ro.media.panorama.frameres=1280x720
ro.camcorder.videoModes=true
ro.media.enc.hprof.vid.fps=65
##
You don't have to copy the ##
Hit thanks if it helped you
good
tnx
This actually helped to improve performance. I'm a lot more satisfied with this tablet. Thank you.
marl30 said:
This actually helped to improve performance. I'm a lot more satisfied with this tablet. Thank you.
Click to expand...
Click to collapse
you are welcomed happy to help
How
Hey,
Es didn't worked for me. Tried root acces app.
The code lines between ## is the one that supposed to be past in? Can I make a comment before the lines by using # so Iknow what I want with it?
Thanks
kenny1991 said:
Hey,
Es didn't worked for me. Tried root acces app.
The code lines between ## is the one that supposed to be past in? Can I make a comment before the lines by using # so Iknow what I want with it?
Thanks
Click to expand...
Click to collapse
Yes you have to paste whats between the ##
check your build.prop , some lines are already present, you just have to edit it like its given above.
Hope this helps
Very nice info. Thanks Will try as soon as I can.
Quote happens just by pressing the wrong reply button!
The Dude above....did you have to re-quote the entire OP :beer:
Sent from my SM-T211 using xda premium
andynroid said:
The Dude above....did you have to re-quote the entire OP :beer:
Sent from my SM-T211 using xda premium
Click to expand...
Click to collapse
:silly: happens!
Any chance you know what to enable native voice on the t217 variants?
Sent from my SM-T217S using XDA Premium 4 mobile app
Adding debug.sf.hw = 1 increased my performance by a noticeable amount, thanks.
I have applied this #debug.sf.hw = 1# on my Tab 3 and old Asus ME172V noticable speed improvement on both especially the Asus.
Thanks
Many thanks, the he ui tweak has increased my tablet performance massively
Thanks again
Sent from my SM-T310 using Tapatalk
Nice
Added debug.sf.hw= 1 to my SM-T110 and it increased performance a bit, added this tweaks for faster booting, and it actually boots alot faster.
Thanks!
Will try this later
Thank you!
Related
Hi all! i liked to introduce my own build.prop tweaks that i got from my FRIEND IN GTALK :i know a lot of you think that build.prop is just a file that will let you modify the ROM name in about phone but build.prop is actually a configuration file you write a line of code into build.prop and that line tells the android system what to do.
for example lets take
Code:
debug.sf.hw=X
now this line tells the android OS how to render the UI,
Code:
debug.sf.hw=0
means that the OS uses CPU to render UI and if its
Code:
debug.sf.hw=1
it means that OS uses GPU to render the UI. (notice that we dont have this line in build.prop because our phone CPU and GPU sucks )
ok so now that you all know what build.prop can do lets get to the actual tweaks
**NOTE! If you dont have these lines on build.prop just add them to the last line in build.prop, BUT if you have these then you can just change the values
1.) save power while phone is in sleep mode
Code:
ro.ril.disable.power.collapse=1
2.) make the phone ring faster when dialing out
Code:
ro.telephony.call_ring.delay=1000
3.) make UI and scrolling more responsive (notice that this line should already be in build.prop but with different value)
Code:
windowsmgr.max_events_per_sec=150
4.) save battery by decreasing the amount of time Wifi looks for an access point (now it searchs an wifi acces point every 1.5 minute instead of 45secs)
Code:
wifi.supplicant_scan_interval = 150
5.) Change the Dalvik VM heap size (this line is also in build.prop, you can change the value whatever you like and test if it makes your system more stable but 32m is recommended, and in my phone its 32m by stock)
Code:
dalvik.vm.heapsize=32m
6.) disable usb debugging popup
Code:
persist.adb.notify=0
7.) get better signal and data
Code:
ro.ril.hsxpa=2
ro.ril.gprsclass=10
ro.ril.hep=1
ro.ril.enable.dtm=1
ro.ril.hsdpa.category=10
ro.ril.enable.a53=1
ro.ril.enable.3g.prefix=1
ro.ril.htcmaskw1.bitmask=4294967295
ro.ril.htcmaskw1=14449
ro.ril.hsupa.category=5
8.) enable JIT
Code:
dalvik.vm.execution-mode=int:jit
9.) disable JIT
Code:
dalvik.vm.execution-mode=int:fast
10.) fix that SUPER annoying black screen after/during call (i think its in build.prop already but with higher values)
Code:
mot.proximity.delay=150
11.) to enable lockscreen unlocking with menu button (true=enable and false=disable)
Code:
ro.config.hw_menu_unlockscreen=false
12.) change the lcd density (icons become smaller and you can gett more stuff on your home screen)(change to any value and test it ) **NOTE** this is just an example value
Code:
ro.sf.lcd_density=225
13.) enable Stagefright helps stream Video and Music Faster but may not let you watch recorded videos
Code:
media.stagefright.enable-player=true
media.stagefright.enable-meta=true
media.stagefright.enable-scan=true
media.stagefright.enable-http=true
ok. now to another tweaks ok so i recently got a bunch of build.prop code from my friend because i helped him on xda but i have no idea what they mean so here they are! (if you know what these mean please leave a reply and share your knowledge!)
Code:
persist.sys.use_dithering=0
Code:
persist.sys.purgeable_assets=1
Code:
dalvik.vm.dexopt-flags=m=y
Mod edit : removed the same dont use huge bold letters pls it looks like ur screaming
**note: my friend gave me most of these tweaks, the only ource i used besides my friend is this, now PLEASE stop quessing the source
MORE TO COME!
P.S ROM devs are free to use these tweaks, just give me the credits and a thanks
reserved for later use
Hmm nice... and very useful ) Congratulations
Our galaxy 3 is becoming epic phone
benzyniarz1 said:
Hmm nice... and very useful ) Congratulations
Click to expand...
Click to collapse
yes it is and nobody in G3 forums hasnt posted these before me... odd
Thank you excellent work mate !!! :d
Think you forgot to give credits! !
androidforums.com/droid-x-all-things-root/164447-mod-lots-build-prop-edits.html
And what about the build.prop of pox 1.5
Must have something more too right
Anyways nice share
Read them long ago on android.com(removed now) but never tried
Rapier07 said:
Think you forgot to give credits! !
androidforums.com/droid-x-all-things-root/164447-mod-lots-build-prop-edits.html
Click to expand...
Click to collapse
no i didnt... as said my friend gave me these there is only 2 tweaks i took from another site (not xda)
cdesai said:
And what about the build.prop of pox 1.5
Must have something more too right
Anyways nice share
Read them long ago on android.com(removed now) but never tried
Click to expand...
Click to collapse
no, most of these are on POX v.1.5 build.prop
jazux said:
no, most of these are on POX v.1.5 build.prop
Click to expand...
Click to collapse
Please provide the modified build.prop
Here is the source
http://forum.xda-developers.com/showthread.php?t=1151608
All my roms have that tweaks
ash!sh said:
Here is the source
http://forum.xda-developers.com/showthread.php?t=1151608
All my roms have that tweaks
Click to expand...
Click to collapse
your right, but only 1 tweak is from there you do realize that internet is FULL of sites telling these tweaks (and i have looked 3 diff websites ) and as said almost ALL OF THESE TWEAKS i got from my friend (i have no idea where he got these ), so dont come here to tell what the source is!
is it possible to implement all tweaks into zip updateable via CWM?
max5800 said:
is it possible to implement all tweaks into zip updateable via CWM?
Click to expand...
Click to collapse
yes, but theres so many tweaks... i think its better to apply them manually, its not hard just open root explorer and go to /system, press R/W button and then find build.prop, long press it and choose "open in text editor"
jazux said:
so dont come here to tell what the source is!
Click to expand...
Click to collapse
The first line of your thread:
jazux said:
Hi all! i liked to introduce my own build.prop tweaks that i made
Click to expand...
Click to collapse
Hence the need for giving out sources!!
You shouldn't present someone else's work as your own!!!
Rapier07 said:
The first line of your thread:
Hence the need for giving out sources!!
You shouldn't present someone else's work as your own!!!
Click to expand...
Click to collapse
You should also read the WHOLE thread before replying
jazux said:
You should also read the WHOLE thread before replying
Click to expand...
Click to collapse
Yeah I did ! and fyi I've been using these tweaks since long.. no offence but you haven't invented those tweaks! There's no way you can call them your own!!
guys, please chill out...however it is, jazux is sharing some knowledge...
if anyone else had known about the tweaks, then they should have shared it with everyone instead of complaining what the original source is
Testing this now good find [[]]
dharamg3 said:
guys, please chill out...however it is, jazux is sharing some knowledge...
if anyone else had known about the tweaks, then they should have shared it with everyone instead of complaining what the original source is
Click to expand...
Click to collapse
Agreed.. i dont have anything against him but what bothers me is people using someone else's work under their name.. that's injustice flto the original dev.. it doesn't take much to give credits, does it?
FEEL FREE TO COMMENT AND THANK ME
Notes....
**17/3/12 UPDATED TO V6 **
**DUE TO IDIOTIC BEHAVIOUR AND A LOT OF CRYING 17KICKASSKERNELIZER WAS REMOVED**
**IF YOU HAVE ALREADY INSTALLED V6 SUPERCHARGER UNINSTALL IT BEFORE FLASHING THE ZIP**
(Basically dont use v6 supercharger at all)
This is a zip file that contains all (most) of the tweaks available here in XDA forums. It's so amazing.There is no risk of bricking or something else as it only contains some scripts that execute at boot
What's included ? :
-> Build.prop script Made especially by me
-> loopy smoothness tweak
(credits to lpy)
-> CFSK script,sqlite_optimize script,touchscreen tweak(ALL THESE 3 FROM Thunderbolt!)(credits to Pikachu01)
-> Screenstate_Scaling tweak (Credits to Slaid480)
-> Cleaning script That clears dalvik-cache and cache useless files
(Credits to Slaid480)
-> Kernel tweaking script (No need to download sysctl.conf anymore )
(Thanks to booster buster tweak)
-> Governor tweaks and some more minor tweaks
-> defragging script, zippaligning <-(credits to darky)(credits to gabwerkz)
-> UI tweaks,sd card tweaks and performance tweaks(credits to DynamicRam)
-> Disabled Verify-bytecode For Better resposing and More free RAM(credits to nibraas_reeza)
-> Live wallpapers hack in order to make them smoother (credits to despotovski01!)
-> System_server from Fugu tweaks(credits to ForeverSupra)
-> Sqlite optimizer from Lightning zap tweaks(credits to thomas.raines)
-> Speedy tweaks(credits to 0vermind)
-> Logger disabling script(If you want your logger to work then delete 02logger)
INSTALLATION : SIMPLY FLASH THROUGH CWM RECOVERY
..Benefits after flashing the zip ..
Vm management memory tweaks so that your apps perform better
The Loopy smoothness tweak that tweaks your launcher and system UI
Zippaligning and Verify-Bytecode tweak fore More free and Less RAM usage
SD card tweak for better read/write speed
Kernel tweaks for more battery life and slightly more performance!
Less lag in phone calls
better scrolling in contacts/menus/folders/homescreen
Smoother live wallpapers!!
System_server from android 4.0 for efficient system funcionality and performance!
System processes priority tweaks (phone,sms etc..)Makes switching between them faster!!
Build.prop tweaking script for battery/performance etc...
Optimized sqlite and I/O tweaks for better quadrant scores/other benchmarking apps
More...
YOU CAN ALSO TRY OUT THOSE BUILD.PROP TWEAKS
[SOME BUILD.PROP TWEAKS THAT CAN ALSO HELP]
(just open build.prop and copy them to the end of the file.Please report if they work on your phone/rom )
[EXPERIMENTAL](Thanks Master&Slave )
This might give you better video recording and picture taking results
ro.media.capture.maxres=8m
ro.media.capture.fast.fps=4
ro.media.capture.slow.fps=120
ro.media.panorama.defres=3264x1840
ro.media.panorama.frameres=1280x720
ro.camcorder.videoModes=true
ro.media.enc.jpeg.quality=95
(wi-fi speed increase tweaks)
net.ipv4.tcp_ecn=0
net.ipv4.route.flush=1
net.ipv4.tcp_rfc1337=1
net.ipv4.ip_no_pmtu_disc=0
net.ipv4.tcp_sack=1
net.ipv4.tcp_fack=1
net.ipv4.tcp_window_scaling=1
net.ipv4.tcp_timestamps=1
net.ipv4.tcp_rmem=4096 39000 187000
net.ipv4.tcp_wmem=4096 39000 187000
net.ipv4.tcp_mem=187000 187000 187000
net.ipv4.tcp_no_metrics_save=1
net.ipv4.tcp_moderate_rcvbuf=1
DOWNLOAD THE FILE AT THE END OF THE POST(will upload to mediafire the next release) ^^
[SetCPU]
Are you using "on demand scaling"?You might wanna try these
Sampling -> 200000
Up Threshold -> 50
Down Thresold ->25
Ignore Nice Load -> 0
{Up/down thresold is responsible for scaling up/down CPU frequency(That means that when cpu hits the % you have set the prossecor will scale up and hit from (example) 245 mhz to 400 mhz
50% is fair because if you set it too high the phone will be slow and unresponsive.On the other hand if you set it to low then it will drain your battery faster
ALWAYS HAVE A BACKUP AVAILABLE IN CASE SOMETHING GOES WRONG
THANKS AGAIN THE ORIGINAL DEVELOPERS OF THE SCRIPTS ALL CREDITS GO TO THEM
**CHANGELOG**
V1=the first .zip file
V2=Added loopy_smoothness tweak v2(TweakZV1 had the older version)and changed some VM management tweaks
V3=Added the live wallpapers script for smoother live wallp's
Added the system_server file from android 4.0 for better responding times
Added some priority tweaks that change the system apps priority(like phone,sms) for faster switching between them
Added some network and wifi speed tweaks
V4=Added screenstate_scaling tweak that tweaks cpu when screen is off,The cleaner script that clears unnessecary Files from dalvik-cache and cache folders
Added the kernel tweaking script,And some minor tweaks for battery+speed
V5=Resigned the zip,Build.prop tweaking script that autoapplies tweak(Made by me),Sqlite optimizer and more miscellanous tweaks
V6=Cleared up the scripts,removed 17kickasskernelizer,added 02logger(Disables logger) And corrected the updater-script now the scripts have their permissions set properly and DO RUN at BOOT
Is this a universal script?
Is it compatible w by supercharger script?
Supercharged GingerVolt B-) R U ?
Can I flash this I'm running miui 1.9.23 v6supercharger and loopy smoothness
Sent from my DROIDX using XDA App
bhp117 said:
Is this a universal script?
Is it compatible w by supercharger script?
Supercharged GingerVolt B-) R U ?
Click to expand...
Click to collapse
what do you mean by universal ?
yes its compatible with supercharger
omeomyo said:
Can I flash this I'm running miui 1.9.23 v6supercharger and loopy smoothness
Sent from my DROIDX using XDA App
Click to expand...
Click to collapse
yes of course you can just open the zip and delete the loopy_smoothness tweak because it will overwrite your settings
[email protected] said:
what do you mean by universal ?
yes its compatible with supercharger
Click to expand...
Click to collapse
Does it work with all phones and roms
Supercharged GingerVolt B-) R U ?
I removed some of the scripts, it conflicts some of it
Sent from my LG-P500 using Tapatalk
bhp117 said:
Does it work with all phones and roms
Supercharged GingerVolt B-) R U ?
Click to expand...
Click to collapse
yep.. (confirm it tho)
dnle71 said:
I removed some of the scripts, it conflicts some of it
Sent from my LG-P500 using Tapatalk
Click to expand...
Click to collapse
okay if you find any bugs tell me
Thanks ill give it a go
Sent from my HTC Glacier using XDA App
formeforfree said:
Thanks ill give it a go
Sent from my HTC Glacier using XDA App
Click to expand...
Click to collapse
no probzz report bugs(if there are any)
I tried this on my huawei u8500 with cm7 belive it works thanks :thumbup:
Sent from my U8500 using Tapatalk
Thanks for sharing this it work !
ekstrom79 said:
I tried this on my huawei u8500 with cm7 belive it works thanks :thumbup:
Sent from my U8500 using Tapatalk
Click to expand...
Click to collapse
no problem!
Taxi341 said:
Thanks for sharing this it work !
Click to expand...
Click to collapse
i m glad you like it
Problem occured in Tweakz3.zip cause bad installation script...!!!
((( RedDeviL ))) said:
Problem occured in Tweakz3.zip cause bad installation script...!!!
Click to expand...
Click to collapse
oh damn im sorry i ll re upload it
thanks for reporting
[email protected] said:
oh damn im sorry i ll re upload it
thanks for reporting
Click to expand...
Click to collapse
Did u managed to replace the script file....
((( RedDeviL ))) said:
Did u managed to replace the script file....
Click to expand...
Click to collapse
yes ive reuploaded it..you can now download it i flashed it to my phone <3
Cannot install still the script error bad 6....
Please check....
The earlier one v2 is ok if flash.....
Problem in V3....
When i check the script looks like nothing change all same only....
ALL CREDIT GOES TO Master&Slave™ ON THE SAMSUNG VIBRANT BOARD!!
SOME OF THE TWEAKS HAVE ARE ALREADY THERE IN SOME CUSTOM ROMS BY OUR DEVS
READ FIRST
**If these lines already exist in your build.prop, then you can just edit the values. If not then Just add the lines. After making the tweaks always remember to reboot twice..!!!**
----------------------------------------------------------------------------
Normal Method Done Via Root Explorer
1, Open "Root Explorer" and mount R/W.
2, Go to "system" and you will find there is a file name "build.prop".
3, Right click (By holding at the file) and there is menu pop out.
4, Scroll down and select edit in Text Editor.
5, Type in those few line of words below into the last line of the text then save.
6. Reboot twice !!
NOTEPAD++ RECOMMENDED FOR EDITING BUILD.PROP
Data Tweaks
ro.ril.hsxpa=3
ro.ril.gprsclass=12
ro.ril.hep=1
ro.ril.enable.dtm=1
ro.ril.hsdpa.category=28
ro.ril.enable.a53=1
ro.ril.enable.3g.prefix=1
ro.ril.htcmaskw1.bitmask=4294967295
ro.ril.htcmaskw1=14449
ro.ril.hsupa.category=9
Powersave Tweaks
ro.ril.disable.power.collapse=1
pm.sleep_mode=1--------NEW
wifi.supplicant_scan_interval=150
UI Tweaks
windowsmgr.max_events_per_sec=150
debug.sf.hw=1
video.accelerate.hw=1------NEW
Media Tweaks
ro.media.enc.jpeg.quality=100
ro.media.dec.jpeg.memcap=8000000
ro.media.enc.hprof.vid.bps=8000000-----NEW
media.stagefright.enable-player=true
media.stagefright.enable-meta=true
media.stagefright.enable-scan=true
media.stagefright.enable-http=true
Boot Tweaks
Disable boot animation for faster boot
debug.sf.nobootanimation=1
persist.sys.shutdown.mode=hibernate----NEW
^^Makes phone boot rapidly fast.
Miscellaneous Tweaks
Change the Dalvik VM heap size
dalvik.vm.heapsize=72m
To enable the hard key lights to stay on while the screen is on and not timeout
ro.mot.buttonlight.timeout=0
Try disabling BLN if your having trouble getting this to work
To make the phone come off of the "black screen" in the middle of, or the end of phone calls when you pull the phone away from your face
mot.proximity.delay=150
**May kill the dialer**
To disable usb debugging popup
persist.adb.notify=0
To give your phone an HD effect fitting a little more on the screen, look for this in you current build.prop and change the 110 OR 100 to:
ro.sf.lcd_density=X (100 or 110)
I RECOMMEND 110
To enable the menu button too unlock the phone
ro.config.hw_menu_unlockscreen=true
To stop the phone from waking up when pressing the volume key
ro.config.hwfeature_wakeupkey=0
To make the phone ring faster when dialing out
ro.telephony.call_ring.delay=800
Force launcher into memory
ro.HOME_APP_ADJ=1
Increase overall touch responsiveness
debug.performance.tuning=1
video.accelerate.hw=1
Net speed tweaks
net.tcp.buffersize.default=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.wifi=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.umts=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.gprs=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.edge=4096,87380,256960,4096,16384,256960
Fix some application issues
ro.kernel.android.checkjni=0
Enjoy PEOPLE!!!
Does fit support the bln setting
galfit cm7.2 rc3
kudo shinichi said:
Does fit support the bln setting
galfit cm7.2 rc3
Click to expand...
Click to collapse
nope its for devices which support bln
COOL !!
nice guide bro thanks!
btw can u provide an example for this?
im afraid to add this tweaks and fail (not working) hehe
Syfer_Fever said:
nice guide bro thanks!
btw can u provide an example for this?
im afraid to add this tweaks and fail (not working) hehe
Click to expand...
Click to collapse
HERE YOU GO BRO
i have shown adding the disabling boot animation tweak on creed 1.5's build.prop
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id= GINGERBREAD
ro.build.display.id=CREED's ROM v1.5
ro.build.version.incremental=DDKQ5
ro.build.version.sdk=10
ro.build.version.codename=REL
ro.build.version.release=2.3.4
ro.build.date=Thu Sep 8 09:11:37 KST 2011
ro.build.date.utc=1315440697
ro.build.type=user
ro.build.user=root
ro.build.host=DELL123
ro.build.tags=release-keys
ro.product.brand=samsung
ro.product.model=GT-S5670
ro.product.name=GT-S5670
ro.product.device=GT-S5670
ro.product.board=GT-S5670
# ro.build.product is obsolete; use ro.product.device
ro.build.product=GT-S5670
ro.product.cpu.abi=armeabi
ro.product.manufacturer=samsung
ro.product.locale.language=en
ro.product.locale.region=GB
ro.wifi.channels=
ro.board.platform=msm7k
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=GT-S5670-user 2.3.4 GINGERBREAD DDKQ5 release-keys
ro.build.fingerprint=samsung/GT-S5670/GT-S5670:2.3.4/GINGERBREAD/DDKQ5:user/release-keys
# Samsung Specific Properties
ro.build.PDA=S5670DDKQ5
ro.build.hidden_ver=S5670DDKQ5
ro.build.changelist=561540
ro.build.buildtag=
ro.HOME_APP_ADJ=1
ro.media.enc.jpeg.quality=100
ro.telephony.call_ring.delay=800
windowsmgr.max_events_per_sec=150
debug.performance.tuning=1
ro.media.dec.jpeg.memcap=8000000
ro.media.enc.hprof.vid.bps=8000000
video.accelerate.hw=1
# end build properties
#
# system.prop for GT-S5670
#
##rild.libpath=/system/lib/libril-qc-1.so
##rild.libargs=-d /dev/smd0
rild.libpath=/system/lib/libsec-ril.so
rild.libargs=-d /dev/smd0
persist.rild.nitz_plmn=
persist.rild.nitz_long_ons_0=
persist.rild.nitz_long_ons_1=
persist.rild.nitz_long_ons_2=
persist.rild.nitz_long_ons_3=
persist.rild.nitz_short_ons_0=
persist.rild.nitz_short_ons_1=
persist.rild.nitz_short_ons_2=
persist.rild.nitz_short_ons_3=
DEVICE_PROVISIONED=1
#debug.sf.hw=1
debug.composition.type=mdp
dalvik.vm.heapsize=64m
ro.sf.lcd_density=110
media.stagefright.enable-player=false
# The OpenGL ES API level that is natively supported by this device.
# This is a 16.16 fixed point number
ro.opengles.version = 131072
#MM Camera
ro.media.enc.vid.m4v.fps=5,15
ro.media.enc.vid.m4v.width=176,320
ro.media.enc.vid.m4v.height=144,240
ro.media.enc.vid.m4v.bps=90000,770000
ro.media.enc.vid.h264.fps=5,15
ro.media.enc.vid.h264.width=176,320
ro.media.enc.vid.h264.height=144,240
ro.media.enc.vid.h264.bps=90000,770000
ro.media.enc.vid.h263.fps=5,15
ro.media.enc.vid.h263.width=176,320
ro.media.enc.vid.h263.height=144,240
ro.media.enc.vid.h263.bps=90000,770000
ro.media.enc.vid.height.min = 144
ro.media.enc.vid.height.max = 240
ro.media.enc.vid.width.min = 176
ro.media.enc.vid.width.max = 320
ro.media.enc.vid.bps.min =90000
ro.media.enc.vid.bps.max =770000
ro.media.enc.vid.fps.min = 5
ro.media.enc.vid.fps.max = 15
#
# ADDITIONAL_BUILD_PROPERTIES
#
ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html
ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/privacy.html
ro.com.google.locationfeatures=1
ro.setupwizard.mode=DISABLED
ro.com.google.clientidbase=android-samsung
ro.com.google.gmsversion=2.3_r6
ro.config.notification_sound=12_Sherbet_Default_message.ogg
ro.config.alarm_alert=1_Good_Morning.ogg
dev.sfbootcomplete=0
keyguard.no_require_sim=true
ro.config.ringtone=Classic_bell.ogg
ro.config.notification_sound=01_Cloud.ogg
ro.config.alarm_alert=Alarm_Buzzer.ogg
ro.opengles.version=131072
ro.com.google.clientidbase=android-samsung
net.bt.name=Android
dalvik.vm.stack-trace-file=/data/anr/traces.txt
dalvik.vm.execution-mode=int:jit
debug.sf.nobootanimation=1
persist.sys.shutdown.mode=hibernate
Click to expand...
Click to collapse
here i just added the red part its simple dnt forget to leave on line after a tweak
thanks! i will test it
Its good to give proper credits to persion from where you get it
This is quite interesting. Thanks
Sent from my GT-S5670 using xda premium
is there any tweak to make reboot faster, but not to disable the boot animation?
AldoSebastian said:
is there any tweak to make reboot faster, but not to disable the boot animation?
Click to expand...
Click to collapse
U SHOULD USE DIS DEN
varun.katoch said:
.
.
.
To enable the hard key lights to stay on while the screen is on and not timeout
ro.mot.buttonlight.timeout=0
Try disabling BLN if your having trouble getting this to work
.
.
.
Click to expand...
Click to collapse
do we have such lights on GalFit?
varun.katoch said:
.
.
.
Net speed tweaks
net.tcp.buffersize.default=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.wifi=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.umts=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.gprs=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.edge=4096,87380,256960,4096,16384,256960
.
.
.
Click to expand...
Click to collapse
Caused cm7.2rc2 to disfunction wifi AND data :S
AldoSebastian said:
is there any tweak to make reboot faster, but not to disable the boot animation?
Click to expand...
Click to collapse
I think u can add a cf-root kernel.
It can make boot go faster. I think
Delanoister said:
I think u can add a cf-root kernel.
It can make boot go faster. I think
Click to expand...
Click to collapse
i think there is no CF-Root kernel for fit now
maybe you can make it for fit?
It would be great if you commented about each setting's purpose (would really help newbie developers)
and btw tweek is incorrect. it's tweak
Are you giving two line spaces for text to type.
premolikeshtc said:
Are you giving two line spaces for text to type.
Click to expand...
Click to collapse
leave only one line bro
I am still not getting how to type..!
like if i wanna insert net speed tweaks...i simply write all those lines, leaving one line after the last line .! Is this is the way!
Yup dats d way !!
Sent from my GT-S5670 using XDA App
Featured on XDA Portal: Disable CPU Rendering on Devices with the Adreno 200
I started this thread over at the LG-VM670 forums at Android Central. I thought maybe it was about time I share it over here on XDA since it's a pretty great tweak and it works without any added issues.
But keep in mind, if your phone doesn't have adreno200 gpu drivers, this won't work and could probably cause an endless bootloop. Now that that's covered, read up and do this carefully, this will not work on every device and is only meant for adreno200. I may have another tweak up my sleeve, but I need a device with something other than adreno200, such as tegra, to test it out on, which I don't have at the moment. Anyway, this worked out quite well for the Optimus V users, I believe it works on Xperia devices as well and it's been confirmed to work on Galaxy SIII. I'll try my very best to keep this thread updated, I don't have a ton of devices to test this on so I'd really appreciate some feedback so I can update the main post and list whatever devices this tweak works with (nobody wants a endless bootloop, so let's inform each other) oh and before I forget.. MAKE A NANDROID BACKUP!! Just in case
I found this tweak while trying to look for a loopy smothness tweak made for ICS, but I ended up finding something better than loopy smoothness, a guide to disable CPU rendering. With this tweak you can take full advantage of your device's GPU. In other words you disable software rendering and enable hardware rendering instead (correct me if I'm wrong).
Original thread where I found the tweak: [TWEAK] ICS Specific Tweaks of XPERIA MOD ROM
If you end up adding this tweak into a custom rom you are sharing, please don't forget to give credit for it. You can thank me and mrg666 for it
Confirmed working on:
Code:
- BobZhome CM9 [VM670]
- quattrimus CM9 [VM670]
- mrg666 MiRaGe IHO [VM670]
- BobZhome IHO [VM670]
- Galaxy SIII
- Xperia devices
- any device with working adreno200 drivers (in this case my LG myTouch 4G is a good example, it worked marvelously and more noticeably on this device)
It should work on any rom, just as long as it has adreno200. By downloading CPU-Z from Play Store you can tell what GPU your device is running.
What might you benefit from? So far this is what I noticed.
Code:
- performance boost
- speed boost
- increased responsiveness
- better audio quality
- apps such as Facebook that would become slow and unresponsive are suddenly blazing fast
I forgot to mention this before, I recommend you use Root Explorer or another file browser that has root support to install the tweak. Also set the permission to rw-r--r-- for the egl.cfg file.
Disable CPU Rendering
Code:
It removes the entire soft-rendering pathway, hence good performance.
Download the attachment and put it under system/lib/egl and delete libGLES_android.so from egl folder.
That's all.
[URL="http://forum.xda-developers.com/attachment.php?attachmentid=976632&d=1333283208"]egl.zip[/URL]
P.S. It's flashable via CWM recovery now with the eglpatch, it just got easier. But if you would like to do it manually for whatever reason, this guide will still remain here.
I didn't develop adreno200 drivers, this tweak is a simple change to the egl.conf file, I came across it and tested it with my LG Optimus V and my LG myTouch 4G both on GB and ICS roms for both devices and it works and I'm not entirely sure about this but it should work on some other devices. I'm not responsible for anything that goes wrong with your device, you know the risks of flashing files to root. Make a backup first.
Enjoy
Update! mrg666 compiled a flashable zip, the link to his post is right here
Another update! It's been confirmed that this tweak doesn't seem to work on Froyo based roms, it causes an endless bootloop. Although it's been confirmed to work on Harmonica. So from what I know it will work best on GB and above.
Yet another update! This info is for anyone who doesn't have adreno200 on their device. Instead of flashing the cwm patch, edit your egl.cfg file manually with Root Explorer or whatever root file browser you use, and edit out the first line, which is pretty much the default CPU rendering. I hope I'm correct about this, if not then I apologize in advance. This is what others reported working for them.
Click to expand...
Click to collapse
- build.prop tweaks -
Use on whatever ROM you like
Code:
### LeoLawliet's new tweaks 9/28/2013 ###
# Misc Tweaks
debug.gr.swapinterval=0
debug.performance.tuning=1
dev.pm.dyn_samplingrate=1
persist.adb.notify=0
persist.service.adb.enable=1
persist.sys.use_dithering=1
persist.sys.purgeable_assets=1
qemu.hw.mainkeys=0
ro.min_pointer_dur=1
ro.sec.proximity.delay=0
sys.mem.max_hidden_apps=15
# Battery Tweaks
pm.sleep_mode=1
ro.ril.disable.power.collapse=1
# Unlocks Screen using Menu Button
ro.config.hw_menu_unlockscreen=true
# Kernel Tweaks
ro.kernel.checkjni=0
# Ram Tweaks
persist.sys.purgeable_assets=1
# Kills Loging
ro.config.htc.nocheckin=1
ro.config.nocheckin=1
profiler.force_disable_ulog=1
profiler.force_disable_err_rpt=1
# Media Streaming Optimizations
media.stagefright.enable-player=true
media.stagefright.enable-meta=true
media.stagefright.enable-scan=true
media.stagefright.enable-http=true
media.stagefright.enable-aac=true
media.stagefright.enable-qcp=true
media.stagefright.enable-record=true
# Camera & Media Tweaks
ro.media.enc.jpeg.quality=100
ro.media.dec.jpeg.memcap=8000000
ro.media.dec.jpeg.memcap=20000000
ro.media.enc.hprof.vid.bps=8000000
ro.media.enc.hprof.vid.fps=75
ro.media.enc.jpeg.quality=100
ro.media.dec.aud.wma.enabled=1
ro.media.dec.vid.wmv.enabled=1
ro.media.cam.preview.fps=25
ro.media.codec_priority_for_thumb=so
# CM9 Tweaks
hwui.disable_vsync=true
hwui.render_dirty_regions=false
# Voice Optimization
ro.ril.enable.amr.wideband
# Better Telephony Settings
ro.config.vc_call_vol_steps=15
ro.config.vc_call_steps=20
ro.telephony.call_ring.delay=0
ring.delay=0
ro.lge.proximity.delay=25
mot.proximity.delay=25
ro.mot.buttonlight.timeout=0
# Google DNS
net.dns1=8.8.8.8
net.dns2=8.8.4.4
net.rmnet0.dns1=8.8.8.8
net.rmnet0.dns2=8.8.4.4
# TCP Tweaks (might break WiFi)
net.tcp.buffersize.default=4096,87380,256960,4096, 16384,256960
net.tcp.buffersize.wifi=4096,87380,256960,4096,163 84,256960
net.tcp.buffersize.umts=4096,87380,256960,4096,163 84,256960
net.tcp.buffersize.gprs=4096,87380,256960,4096,163 84,256960
net.tcp.buffersize.edge=4096,87380,256960,4096,163 84,256960
net.tcp.buffersize.hspda=4096,87380,256960,4096,16 384,256960
net.tcp.buffersize.hspa=4096,87380,256960,4096,163 84,256960
# Wireless Conection Tweaks (might break WiFi)
net.ipv4.ip_no_pmtu_disc=0
net.ipv4.route.flush=1
net.ipv4.tcp_ecn=0
net.ipv4.tcp_fack=1
net.ipv4.tcp_mem=187000 187000 187000
net.ipv4.tcp_moderate_rcvbuf=1
net.ipv4.tcp_no_metrics_save=1
net.ipv4.tcp_rfc1337=1
net.ipv4.tcp_rmem=4096 39000 187000
net.ipv4.tcp_sack=1
net.ipv4.tcp_timestamps=1
net.ipv4.tcp_window_scaling=1
net.ipv4.tcp_wmem=4096 39000 187000
# 3d performance
persist.android.strictmode=0
ro.min_pointer_dur=1
ro.secure=0
# 16BIT Support
debug.fb.rgb565=1
# 16BIT Transparency
persist.sys.use_16bpp_alpha=1
# Graphic Tweaks
ro.product.gpu.driver=1
debug.gr.swapinterval=0
# Better scrolling responsiveness
windowsmgr.max_events_per_sec=90
ro.max.fling_velocity=12000
ro.min.fling_velocity=8000
# Better Touch Responsiveness
touch.presure.scale=0.001
# Dalvik Tweaks
dalvik.vm.heapstartsize=8m
dalvik.vm.heapgrowthlimit=64m
dalvik.vm.heapsize=256m
dalvik.vm.dexopt-flags=m=y,v=n,o=n
dalvik.vm.stack-trace-file=/data/anr/traces.txt
dalvik.vm.lockprof.threshold=500
dalvik.vm.execution-mode=int:jit
dalvik.vm.jmiopts=forcecopy
dalvik.vm.dexopt-data-only=1
# Enable Qualcomm tile rendering (Hardware Rendering)
debug.enabletr=1
persist.sys.composition.type=gpu
# enable harware egl profile
debug.egl.profiler=1
# FPs Booster
persist.sys.NV_FPSLIMIT=60
persist.sys.NV_POWERMODE=1
persist.sys.NV_PROFVER=15
persist.sys.NV_STEREOCTRL=0
persist.sys.NV_STEREOSEPCHG=0
persist.sys.NV_STEREOSEP=20
# Graphic Optimization
debug.gr.numframebuffers=3
ro.min_pointer_dur=1
# Hardware 2D & 3D Rendering
hw3d.force=1
hw2d.force=1
# Nitro Lagg Nullifier
ENFORCE_PROCESS_LIMIT=false
MAX_SERVICE_INACTIVITY=false
MIN_HIDDEN_APPS=false
MAX_HIDDEN_APPS=false
CONTENT_APP_IDLE_OFFSET=false
EMPTY_APP_IDLE_OFFSET=false
MAX_ACTIVITIES=false
ACTIVITY_INACTIVE_RESET_TIME=false
MAX_RECENT_TASKS=false
MIN_RECENT_TASKS=false
APP_SWITCH_DELAY_TIME=false
MAX_PROCESSES=false
PROC_START_TIMEOUT=false
CPU_MIN_CHECK_DURATION=false
GC_TIMEOUT=false
SERVICE_TIMEOUT=false
MIN_CRASH_INTERVAL=false
# Pro-Tuned ADJ 1.2 by LENAROX.
ro.FOREGROUND_APP_ADJ=0
ro.VISIBLE_APP_ADJ=4
ro.PERCEPTIBLE_APP_ADJ=3
ro.HEAVY_WEIGHT_APP_ADJ=2
ro.SECONDARY_SERVER_ADJ=1
ro.BACKUP_APP_ADJ=5
ro.HOME_APP_ADJ=6
ro.HIDDEN_APP_MIN_ADJ=7
ro.EMPTY_APP_ADJ=15
#Ultimate Assassin Mode!
#ro.SECONDARY_SERVER_ADJ=15
#ro.HIDDEN_APP_MIN_ADJ=3
# Qualcomm Display Settings (Qualcomm devices ONLY!!)
com.qc.hardware=1
debug.qc.hardware=true
debug.qctwa.preservebuf=1
debug.qctwa.statusbar=1
# Rapid Boot Technology 1.1 (Reduces bootup time)
persist.sys.shutdown.mode=hibernate
ro.config.hw_fast_dormancy=1
ro.config.hw_quickpoweron=true
# Rendering Tweaks
debug.composition.type=c2d
debug.egl.hw=1
debug.enabletr=true
debug.overlayui.enable=1
debug.qctwa.preservebuf=1
debug.performance.tuning=1
debug.sf.hw=1
dev.pm.dyn_samplingrate=1
hw3d.force=1
ro.config.disable.hw_accel=false
ro.fb.mode=1
ro.sf.compbypass.enable=0
ro.vold.umsdirtyratio=20
persist.sys.composition.type=c2d
persist.sys.ui.hw=1
video.accelerate.hw=1
# Sensor Sleep Control
ro.ril.sensor.sleep.control=1
# Smoothens UI
persist.service.lgospd.enable=0
persist.service.pcsync.enable=0
### End of LeoLawliet's new tweaks 9/28/2013 ###
Gunna try it now and report back
Sent from the best smartphone in the world!
---------- Post added at 06:36 PM ---------- Previous post was at 06:03 PM ----------
OK well I copied over the file and set permissions. It booted up fine, as you van tell by me posting here lol. Gunner use the phone and see if I noticed any difference
Sent from the best smartphone in the world!
any chance this could work on LG Thrill 4g?
Try it on Evo 4g........
Thnx bro. Its work. Its became real smooth.
I'm on Deck Reloaded GB
Kernel ; Mason
Sent from my PC36100 using Xparent ICS Tapatalk 2
Working on Galaxy S Plus i9001 (tested GB)
Testing results...
edit: Hmm, it actually lowered my 3d antutu score with almost 200 points, so I guess for the i9001 this tweak isn't going to help
broodplank1337 said:
Working on Galaxy S Plus i9001 (tested GB)
Testing results...
edit: Hmm, it actually lowered my 3d antutu score with almost 200 points, so I guess for the i9001 this tweak isn't going to help
Click to expand...
Click to collapse
Different hardware, I guess different results. I'm gonna run some benchmarks when I have free time.
Sent from my LG-E739 using Tapatalk 2
You think I can flash it with TWRP?
Sent from my SPH-L710 using xda premium
This will work with any device.
I just did it to my Nexus 7, Euro Galaxy S3, American Galaxy S3 and Euro Galaxy note.
Its just editing the config file to read only the GPU. You will notice a huge improvement in day to day tasks. However benchmarks will go down.
But that just proves how benchmarks don't mean crap.
Thanks for this!
I go based on how the phone responds to my everyday needs, not benchmarks. That's just a number to show an estimated score based on a bunch of other devices out there. If it gets everything I need done taken care if, I'm satisfied. If it responds faster, even better.
Sent from my LG-E739 using Tapatalk 2
Works on galaxy mini...
.
.
But now my mini bcaming hot..
.
.
.
Idk why but it really became hot from back.. :?
Sent from my GT-S5570 using xda premium
---------- Post added at 09:24 AM ---------- Previous post was at 09:20 AM ----------
And with... this..
..
Gta works very welll
Sent from my GT-S5570 using xda premium
Mrheartlockar said:
Works on galaxy mini...
.
.
But now my mini bcaming hot..
.
.
.
Idk why but it really became hot from back.. :?
Sent from my GT-S5570 using xda premium
---------- Post added at 09:24 AM ---------- Previous post was at 09:20 AM ----------
And with... this..
..
Gta works very welll
Sent from my GT-S5570 using xda premium
Click to expand...
Click to collapse
A bunch of games run faster
And that's weird, are you over locked too high?
Sent from my LG-E739 using Tapatalk 2
:banghead:
.
.
Srry i fogot to say thnk...
.
.
Thank-you very much for this tweak
Sent from my GT-S5570 using xda premium
I tested this on sgs3 (because there is mention that it's work on sgs3) with samsung jelly bean rom and it didn't work, it just stuck on boot, even boot animation doesn't show up.
jnr21 said:
I tested this on sgs3 (because there is mention that it's work on sgs3) with samsung jelly bean rom and it didn't work, it just stuck on boot, even boot animation doesn't show up.
Click to expand...
Click to collapse
Download egl.zip extract it and place it into your sd card...
.
Now open root explore app...
.
1: go_to ---> system->lib->egl (folder)
.
2: There you fond.. [egl.cfg]
.
3: press [MOUNT R/W] on the top of root explorer app.
.
4: delete [egl.cfg] *note:- without pressing [MOUNT R/W] you are not able to delete that file or not able to change permission too .
.
5: then go to your sd card copy [egl.cfg] and place it :
System->lib->egl (folder)
.
6. Now press [egl.cfg] for while -> press permission..
.
7. Set permission exactly like pik given below:->
.
8: after setting permission repress [MOUNT R/W] on top of root explore app.
.
9: re_boot your device.
.
10: now hav som beers :beer:
.
[Sent from my GT-S5570]
.
*Correct me if iam r_ong
& english is my 3rd lang
jnr21 said:
I tested this on sgs3 (because there is mention that it's work on sgs3) with samsung jelly bean rom and it didn't work, it just stuck on boot, even boot animation doesn't show up.
Click to expand...
Click to collapse
Euro or American S3? This is for the American S3s. You have to modify it to for the Mali GPU in the euro one.
jnr21 said:
I tested this on sgs3 (because there is mention that it's work on sgs3) with samsung jelly bean rom and it didn't work, it just stuck on boot, even boot animation doesn't show up.
Click to expand...
Click to collapse
When flashing the CWM zip, did you mount system first before flashing?
Sent from my LG-E739 using Tapatalk 2
Mrheartlockar said:
Download egl.zip extract it and place it into your sd card...
.
Now open root explore app...
.
1: go_to ---> system->lib->egl (folder)
.
2: There you fond.. [egl.cfg]
.
3: press [MOUNT R/W] on the top of root explorer app.
.
4: delete [egl.cfg] *note:- without pressing [MOUNT R/W] you are not able to delete that file or not able to change permission too .
.
5: then go to your sd card copy [egl.cfg] and place it :
System->lib->egl (folder)
.
6. Now press [egl.cfg] for while -> press permission..
.
7. Set permission exactly like pik given below:->
.
8: after setting permission repress [MOUNT R/W] on top of root explore app.
.
9: re_boot your device.
.
10: now hav som beers :beer:
.
[Sent from my GT-S5570]
.
*Correct me if iam r_ong
& english is my 3rd lang
Click to expand...
Click to collapse
Or you could unzip the egl file, copy it, and overwrite the old one and set the right permissions, then reboot. I honestly think this tweak works best and shows the most noticeable results in Gingerbread
Sent from my LG-E739 using Tapatalk 2
leolawliet said:
Or you could unzip the egl file, copy it, and overwrite the old one and set the right permissions, then reboot. I honestly think this tweak works best and shows the most noticeable results in Gingerbread
Sent from my LG-E739 using Tapatalk 2
Click to expand...
Click to collapse
I don't know about GB, as all my devices run jellybean, but I know this significantly speed up transitions, scrolling and just overall UI performance on both S3s.
Don't work
Don't work at my phone.
Guys, let me know what device you installed it on, and lemme know if it works or doesn't.
Like this: LG myTouch 4G [E739] - working (CM7/CM9)
If not working, list which Android version your device is on. For example, CM7-GB that's a no brainer, or CM9-ICS.
Sent from my LG-E739 using Tapatalk 2
I was searching for build.prop tweaks supporting Note 3, but they were hard to find so I compiled on my own and have been running these tweaks successfully. These are old tweaks but are working better on new phone
I am posting these tweaks here and a user can use any tool like root explorer to edit build.prop file.
/* APPLY AFTER LAST LINE */
debug.performance.tuning=1
debug.sf.nobootanimation=0
net.tcp.buffersize.default=6144,87380,110208,6144,16384,110208
net.tcp.buffersize.edge=6144,26280,35040,6144,16384,35040
net.tcp.buffersize.evdo_b=6144,262144,1048576,6144,262144,1048576
net.tcp.buffersize.gprs=6144,8760,11680,6144,8760,11680
net.tcp.buffersize.hsdpa=6144,262144,1048576,6144,262144,1048576
net.tcp.buffersize.hspa=6144,87380,262144,6144,16384,262144
net.tcp.buffersize.lte=262144,524288,3145728,262144,524288,3145728
net.tcp.buffersize.umts=6144,87380,110208,6144,16384,110208
net.tcp.buffersize.wifi=262144,524288,1048576,262144,524288,1048576
persist.adb.notify=0
persist.sys.purgeable_assets=1
pm.sleep_mode=1
ro.camera.sound.forced=0
ro.config.hw_new_wifitopdp=1
ro.config.nocheckin=1
ro.HOME_APP_ADJ=1
ro.kernel.android.checkjni=0
ro.media.dec.aud.flac.enabled=1
ro.media.dec.aud.wma.enabled=1
ro.media.dec.jpeg.memcap=8000000
ro.media.dec.vid.avi.enabled=1
ro.media.dec.vid.wmv.enabled=1
ro.media.enc.hprof.vid.bps=8000000
ro.media.enc.jpeg.quality=100
ro.ril.disable.power.collapse=1
ro.ril.enable.amr.wideband=1
video.accelerate.hw=1
wifi.supplicant_scan_interval=120
windowsmgr.max_events_per_sec=150
windowsmgr.support_rotation_270=true
mot.proximity.delay=0
touch.pressure.scale=0.001
ro.telephony.call_ring.delay=0
It's successfully working on N9005 but you may try it on other versions(SM900....), you will definitely see improvements in performance and battery life.
Good Old Advice:
USE AT YOUR OWN RISK AND ALWAYS MAKE A BACKUP BEFORE EXPERIMENTING
Credits:
To all developers
To Google for ANDROID OS
To Samsung for magnificent harwdware
To everyone who has tested and created this tweak(s).
Reserved.
Thanks.
Sent from my SM-N9005 using Tapatalk
Do these also work on CM11 ROMs?
Sent from my SM-N9005 using xda app-developers app
davitox87 said:
Do these also work on CM11 ROMs?
Sent from my SM-N9005 using xda app-developers app
Click to expand...
Click to collapse
Tested it on TouchWiz Stock ROM working nicely, but was using the same kinda settings in note 1, there was no issues so yes it CAN work try it.
It won't do any harm.
Working Well on CM11 4.4.2 KitKat..!!!
This mod works very well on CM11 running very smoothly.
Sorry if its off topic but I never noticed any improvements during the years with build prop. Please read this http://androidforums.com/merit-all-things-root/643445-info-build-prop-tweaks-useless-most-them.html
hi there.. i just copy those text line into the build.prop under additional build properties.. am i doing it correctly?
mervin8706 said:
hi there.. i just copy those text line into the build.prop under additional build properties.. am i doing it correctly?
Click to expand...
Click to collapse
Yes, but make a backup of original build.prop by copying it to SDCARD.
At the risk of sounding ignorant, what do some of these do?
coppertop24 said:
At the risk of sounding ignorant, what do some of these do?
Click to expand...
Click to collapse
Because theres so many of them your best bet would be to google each one..and learn what each one does.....It would take someone to write a novel on these...and you may still not understand. ..I googled these through years of research and once you understand believe me you'll be so happy you did it on your own pace and learned them.
Also guys make sure that you do not already have them in your build prop list....90% of the roms out already have most of these, You DO NOT want to add duplicates of them. .
wish777 said:
Because theres so many of them your best bet would be to google each one..and learn what each one does.....It would take someone to write a novel on these...and you may still not understand. ..I googled these through years of research and once you understand believe me you'll be so happy you did it on your own pace and learned them.
Also guys make sure that you do not already have them in your build prop list....90% of the roms out already have most of these, You DO NOT want to add duplicates of them. .
Click to expand...
Click to collapse
:good::good::good::good::good::good::good::good:
Tweaks Updated...!!!
Junior dev bndtme xda
Jack Barrett said:
Sorry if its off topic but I never noticed any improvements during the years with build prop. Please read this http://androidforums.com/merit-all-things-root/643445-info-build-prop-tweaks-useless-most-them.html
Click to expand...
Click to collapse
I found what you have stated above to be very true long ago. Just took for granted that everyone else knew that biuld prop chsnges are bogus and don't work. Most people probaly do not know plane txt code only works till you reboot. Both are similar. People both methods do not work.
Thread closed at OP request.
@bipinbedi feel free to PM me anytime you want this thread open.
Thanks
Razvan
Forum Moderator