Advertisement
Guest User

Untitled

a guest
Mar 6th, 2012
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. # Raise JPG quality to 100%
  2. ro.media.enc.jpeg.quality=100
  3.  
  4. # VM Heapsize; 178MB RAM = 32 is better
  5. dalvik.vm.heapsize=32m
  6.  
  7. # Render UI with GPU
  8. debug.sf.hw=1
  9.  
  10. # Decrease dialing out delay
  11. ro.telephony.call_ring.delay=0
  12.  
  13. # Helps scrolling responsiveness
  14. windowsmgr.max_events_per_sec=150
  15.  
  16. # Save battery
  17. wifi.supplicant_scan_interval=180
  18. pm.sleep_mode=1
  19. ro.ril.disable.power.collapse=0
  20.  
  21. # Disable debugging notify icon on statusbar
  22. persist.adb.notify=0
  23.  
  24. # Increase overall touch responsiveness
  25. debug.performance.tuning=1
  26. video.accelerate.hw=1
  27.  
  28. # Photo and video recording quality tweak (2.3 Rom only)
  29. ro.media.dec.jpeg.memcap=8000000
  30. ro.media.enc.hprof.vid.bps=800000
  31.  
  32. # Photo and video recording quality tweak (2.2 Rom only)
  33. ro.media.dec.jpeg.memcap=10000000
  34. ro.media.enc.hprof.vid.bps=1000000
  35.  
  36. # Photo and video recording quality tweak (Official ROM only)
  37. ro.media.dec.jpeg.memcap=10000000
  38. ro.media.enc.hprof.vid.bps=1600000
  39.  
  40. # Internet tweaks
  41. ro.ril.hsxpa=2
  42. ro.ril.gprsclass=12
  43. ro.ril.hep=1
  44. ro.ril.hsdpa.category=10
  45. ro.ril.enable.3g.prefix=1
  46. ro.ril.htcmaskw1.bitmask=4294967295
  47. ro.ril.htcmaskw1=14449
  48. ro.ril.hsupa.category=6
  49. ro.ril.def.agps.mode=2
  50. ro.ril.def.agps.feature=1
  51. ro.ril.enable.sdr=1
  52. ro.ril.enable.gea3=1
  53. ro.ril.enable.fd.plmn.prefix=23402,23410,23411
  54. ro.ril.enable.a52=1
  55. ro.ril.enable.a53=1
  56. ro.ril.enable.dtm=1
  57.  
  58. # NetSpeed tweaks
  59. net.tcp.buffersize.default=4096,87380,256960,4096, 16384,256960
  60. net.tcp.buffersize.wifi=4096,87380,256960,4096,163 84,256960
  61. net.tcp.buffersize.umts=4096,87380,256960,4096,163 84,256960
  62. net.tcp.buffersize.gprs=4096,87380,256960,4096,163 84,256960
  63. net.tcp.buffersize.edge=4096,87380,256960,4096,163 84,256960
  64.  
  65. # Disable blackscreen issue after a call
  66. ro.lge.proximity.delay=25
  67. mot.proximity.delay=25
  68.  
  69. # Fix some application issues
  70. ro.kernel.android.checkjni=0
  71.  
  72. # Phone will not wake up from hitting the volume rocker
  73. ro.config.hwfeature_wakeupkey=0
  74.  
  75. # Force button lights on when screen is on
  76. ro.mot.buttonlight.timeout=0
  77.  
  78. # Disable boot animation for faster boot
  79. debug.sf.nobootanimation=1
  80.  
  81. # Enable Stagefright helps stream Video and Music Faster
  82. media.stagefright.enable-player=true
  83. media.stagefright.enable-meta=true
  84. media.stagefright.enable-scan=true
  85. media.stagefright.enable-http=true
  86.  
  87. # Enable display Dithering
  88. persist.sys.use_dithering=1
  89.  
  90. # Enable purgeable assets
  91. persist.sys.purgeable_assets=1
  92.  
  93. # For SD storage insert notification sound
  94. persist.service.mount.playsnd=0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement