Categories
Android

Samsung Galaxy S3 Optimization via build.prop

One major point speaking for Samsung devices in general is the usual unlocked boot-loader that allows you to modify the system partition. The build.prop file is your device’s “ID Card”. It contains the device’s specifications that allows an application to customise the program according to your device’s specification.

Editing the build.prop file is most commonly used for changing LCD density, build number, the device’s model and manufacturer information. Changing the “fingerprint” of your device can trick some applications in the market into becoming compatible with your device 😉

What you will need

Simple work-around: remove all settings from parental controls

  • a rooted Galaxy S3
  • a file explorer that allows you to remount and explore /system partition (e.g. ES File Explorer)
  • Preferably a nandroid backup of your device (just in case)

Proceed with caution: Attempting to modify and/or overwrite core system files may be detrimental to the function of your device, which could result in lost and unrecoverable data. Make sure to back up your device before continuing with this guide.

Step 1. Open the build.prop file

Start ES File Explorer and navigate to /system. Press the menu button and choose the category: root explorer. Select Mount R/W and remount /system partition as writeable. Open the build.prop file with the included ES Note Editor.

Step 2. Choose the settings to add

#Fast Reboot
persist.sys.purgeable_assets=1

#Increasing the Video Recording Quality
ro.media.enc.hprof.vid.bps=8000000

#Screen Rotate to 270 Degrees
windowsmgr.supportrotation_270=true;

#Increase VM Heap Size (Resolve Some FC's)
dalvik.vm.heapsize=64m

#Render UI with GPU
debug.sf.hw=1

#Increasing It Will Make Mobile Smoother
windowsmgr.maxevents_per_sec=150

#Video Acceleration Enabled
video.accelerate.hw=1

#Increase Performance
debug.performance.tuning=1

#Disable Sending Usage Data
ro.config.nocheckin=1

#Deeper Sleep / Better Battery Life
ro.ril.disable.power.collapse=1

pm.sleep_mode=1

#Ringing Will Start Immediately
ro.telephony.callring.delay=0

#Disable Error Checking
ro.kernel.android.checkjni=0

#Increase Quality of Media Streaming
media.stagefright.enable-meta=true

media.stagefright.enable-scan=true

media.stagefright.enable-http=true

media.stagefright.enable-record=false

#Disable BootAnimation
debug.sf.nobootanimation=1

#Force Launcher to Remain in Memory
ro.HOME_APP_ADJ=1

#Disable Waking Up of Phone by Volume Buttons
ro.config.hwfeature_wakeupkey=0

#Off the Proximity Quickly After Call
mot.proximity.delay=25
ro.lge.proximity.delay=25

#Signal Tweaks
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

#NetSpeed Tweaks
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

#Google DNS Tweak
net.rmnet0.dns1=8.8.8.8

net.rmnet0.dns2=8.8.4.4

net.dns1=8.8.8.8

net.dns2=8.8.4.4

#Increase Photo and Video Quality
ro.media.dec.jpeg.memcap=8000000

ro.media.enc.hprof.vid.bps=8000000

ro.media.enc.jpeg.quality=100

#Touch Responsiveness
debug.performance.tuning=1

video.accelerate.hw=1

#Scrolling Responsiveness
windowsmgr.maxevents_per_sec=500

#Power Save Tweaks
ro.ril.disable.power.collapse=1

pm.sleep_mode=1

#Disables Debug Icon on Status Bar
persist.adb.notify=0
Faster Scrolling
ro.max.flingvelocity=12000

ro.min.fling_velocity=8000

#Wi-Fi to Scan Less Frequently
wifi.supplicantscan_interval=180

#Improve Battery When No Signal
ro.mot.eri.losalert.delay=1000

#Frees RAM to Allow Applications to Load Faster (edit existing line)
dalvik.vm.dexopt-flags=m=v,o=y

Step 3. Add chosen settings to the build.prop file

From the list above choose the options to add to your build.prop file. Scroll down to the bottom of the file and press the overflow button in the actionbar. Choose Edit and append the settings to the file.

Back-out of the editor to save the file

Step 4. Reboot the device + clean up

To apply those changes:

  1. reboot into recovery – mode by restarting the phone and holding down Volume Up + Home + Power Buttons
  2. in recovery mode choose: Wipe Cache and Wipe Dalvik Cache
  3. still in recovery mode choose: reboot now

Depending on the settings you added the changes might not be noticeable immediately.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.