This is the time of smartphone competition to customize your device with killer features. We all know Android is the best platform that offers to customize everything. Each operating system has its own config file and All function is stored in the Build. Prop file. So changing the Build. Prop file will change the Android core functioning values. You can tweak your device without installing any 3rd party apps or mods, just need root access to edit Build. Prop on Android device. Must check how to edit build.prop on Android and what a tweak’s job is. Listed below are 20 Awesome Android Build.Prop Tweaks to Customize Android.
20 Android Build.Prop Tweaks To Customize Android
To edit Build. Prop file you need Build. Prop or a root access file manager read this guide How to Edit build. prop File.
1. Improved Performance.
Most of the AOSP based ROM didn’t come with background app kill features. It takes lots of memory and battery for poor RAM management. Following code to your build.prop will save RAM or battery. This will kill the background process that doesn’t perform any task in the background.
ro.HOME_APP_ADJ = 1
2. Improves Recording Quality.
Most of the user wants the best audio and video quality in their device. This code in build.prop will Improve audio and video recording quality. After applying this code the device recording gives better clear and louder quality sound.
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=3264×1840 ro.media.panorama.frameres=1280×720 ro.camcorder.videoModes=true ro.media.enc.hprof.vid.fps=65
3. Make Your Phone Ring as soon as you get a Call.
The Android device generally waits to verify the connection before it rings to the device. This tweak disables the security waiting time and makes your phone ring as soon as you get a call. just add a few lines at the end of the build.prop file.
ro.telephony.call_ring.delay=0 ring.delay=0
4. Fix Black Screen After Call.
If you are facing a few second black screens after each call. This could be an issue altering the proximity delay, copy and paste these lines that will fix the blackout issue.
ro.lge.proximity.delay=25 mot.proximity.delay=25
5. Enable Auto-rotation on Lock Screen.
An earlier version of the Android operating system comes with Auto-rotation on Lock Screen features. Nowadays Auto-rotation on Lock Screen features has been disabled on smartphones. If you want to enable Auto-rotation on Lock Screen features then add the following line to the end of the build.prop.
lockscreen.rot_override=true
6. Enable Auto-rotation on Home Screen.
Are you using the custom launcher for Auto-rotate the home screen? Now it easily possible on you default/stock launcher. If you want to rotate your home screen then add the following line to the end of the build.prop.
log.tag.launcher_force_rotate=VERBOSE
7. Improve Network Speed.
If you are facing low network speed? You can overall increase network speed on your Android device by increasing the TCP’s Buffersize. When you are browsing the internet on the android device, Your net has been directly connected with the google DNS. Paste the following code at the bottom of the build.prop.
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.dns1=8.8.8.8 net.dns2=8.8.4.4
8. Disable built-in error reporting.
Every Android user always faces with the Apps crash. After apps crashing, we all noticed a pop-up like Error-Reporting is showing on the screen. It too much annoying for the many users. If you feel this is too much annoying for you and want to disable built-in error reporting features then add the code to the end at the Build.Prop file.
profiler.force_disable_err_rpt=1 profiler.force_disable_ulog=1
9. Improve Scrolling.
This adjustment modifies the maximum and minimum fluid velocities to improve scrolling animation and speed. Just Paste the following code at the bottom of the build.prop.
windowsmgr.max_events_per_sec=150 ro.min_pointer_dur=8 ro.max.fling_velocity=12000 ro.min.fling_velocity=8000
10. Improve Call quality.
This code improves clear and louder call quality on your device, just paste following code in the end at the Build.Prop.
ro.ril.enable.amr.wideband=1
11. Change DPI on the Android device.
Changing DPI is one of the most useful build.prop for Android users. DPI refers to the Density Independent on your device. You can find many apps in Playstore to change this setting but here you can directly Tweaks DPI on Android. If you set high amount of value in DPI then the output is smaller UI, smaller texts, smaller icons.
If you set low DPI then the output is a larger UI, larger texts, and larger icons. Always set a perfect DPI otherwise you can’t operate your device. Add the following line of the build.prop.
ro.sf.lcd_density=XXX
Here, XXX refers to the DPI Value. The values are a multiple of 160, That is, 160, 320, 480, 640, etc. XXX replace with a value you like.
12. Improve Image Quality.
Most of the android device render images at a low quality to reduce processor usage. Its quality is not very bad though but not the top quality. Nowadays you can get many powerful processors in the mid-range and even some budget smartphone. Those devices easily displaying the images in original quality with the help of this build.prop. You can add the code shown below.
ro.media.enc.jpeg.quality=100
13. Increase WiFi Network Scan Time.
Every android looks nearby WiFi networks for 15 seconds. If the WiFi is turned on. If you want to increase this time period for extra time WiFi search then Add the following line at the build.prop. The process usually drains more battery than before.
wifi.supplicant_scan_interval=XXX
Here, XXX refers to the interval of scanning in seconds. If you want your device WiFi scan 3 minutes then XXX replace with 180.
14. Disable USB Debugging notification.
persist.adb.notify=0
15. Enable Faster Boot.
In this method, some startup apps will disable that is not necessary. This can be enabled with the code below in the build.prop.
ro.config.hw_quickpoweron=true
16. Force 270-Degree Rotation in All Apps
On the android device, default degrees are 90°, 180° and 270°. Sometimes some apps like Instagram that choose to rotate only 90° and for that reason, you have to rotate the device itself to access the application. You can forcefully enable 270-Degree Rotation in all apps adding this lines at the Build.Prop.
windowsmgr.support_rotation_270=true
17. Enable Video acceleration and HW debugging.
After enable these features the Video framerate for streaming will better. Also, this code enables H/W debugging for the high quality of sound. Simply add the following line at build.prop file.
debug.sf.hw=1 debug.performance.tuning=1 video.accelerate.hw=1 debug.egl.profiler=1 # Measure rendering time in adb shell dumpsys gfxinfo debug.egl.hw=1 debug.composition.type=gpu # Disable hardware overlays and use GPU for screen compositing
18. Increase resolution of a panorama image.
This tweaks forcefully enables higher resolution panorama mode in the camera mode. It can not be supported by all phones.
ro.media.panorama.defres=3264x1840 ro.media.panorama.frameres=1280x720
defres is for the full panorama image resolution, consisting of all images while frames provide the resolution of each frame of a panorama.
19. Improve Network Signals.
This tweak enables Fast Dormancy. Fast Dormancy is a mobile technology feature designed to reduce battery consumption and network utilization between mobile devices and their respective carrier networks during periods of data inactivity. Just paste following code in the end at the Build.Prop.
persist.cust.tel.eons=1 ro.config.hw_fast_dormancy=1
20. Disable Android logger – logcat
Every device record Android log. It basically stores application and portions logs in the system. It displays messages in real time and keeps a history so you can view older messages. Most of the MediaTek device shows Logcat on the device. So if you want to Disable Android logger then add the code mention below.
logcat.live=disable
Tweak Android With These build.Prop Tweaks to Android customization
This is the most useful android build.prop customize code, that optimizes and customize your Android device. First, install a file manager with root browser support then change the required customization that you want. These all build.prop is most handy and useful tweaks for android. All these tweaks should work with Lollipop, Marshmallow, Nougat, Oreo and latest Android Pie and upcoming android versions. If you face any problem during the process comment below in the comment section either subscribe to our newsletter to get the latest update.