Lollipop no lag tip

HITMAN-CREED

Senior Member
Aug 5, 2013
1,030
3,260
0
● Urmia ●
Any feedback please??

I just copied it from the site:
dalvik.vm.heapstartsize size when first launch
dalvik.vm.heapgrowthlimit limit of standard app
dalvik.vm.heapsize heap for large app

increasing heapsize can improve performance because app can used more memory to unpacking resources.
reducing heapsize may improve multitasking experience. however, in some cases, large applications such as gaming, the performance can be more severe. while app nowadays is using larger resources (hd images,audio etc), which would force it to run garbage collection frequently, which would use up CPU cycles and reducing battery life as well.
 
Last edited:

izmaelzx

Senior Member
Jan 10, 2014
232
97
0
Santiago
add to the end of /system/build.prop [test]

Code:
#
# IZX_ADDITIONAL_BUILD_PROPERTIES
#
ro.hwui.texture_cache_size=72
ro.hwui.layer_cache_size=48
ro.hwui.r_buffer_cache_size=8
ro.hwui.path_cache_size=32
ro.hwui.gradient_cache_size=1
ro.hwui.drop_shadow_cache_size=6
ro.hwui.texture_cache_flushrate=0.4
ro.hwui.text_small_cache_width=1024
ro.hwui.text_small_cache_height=1024
ro.hwui.text_large_cache_width=2048
ro.hwui.text_large_cache_height=1024
#
dalvik.vm.heapstartsize=8m
dalvik.vm.heapgrowthlimit=192m
dalvik.vm.heapsize=640m
dalvik.vm.heaptargetutilization=0.75
dalvik.vm.heapminfree=512k
dalvik.vm.heapmaxfree=8m   
#END
 
Last edited: