DroidForums.net is the original Verizon Android Forum! Registered Users do not see these ads. Please Register - It's Free!
Page 1 of 4 1 2 3 ... LastLast
Results 1 to 10 of 39

Thread: My optimized build.prop

  1. Senior Droid
    0vermind's Avatar
    Member #
    52686
    Join Date
    Mar 2010
    Posts
    158
    Phone
    Enter Current Phone Model Here
    #1

    My optimized build.prop

    Been optimizing and researching all of these properties for months now, as well as testing them out. Now I'm going to release what I have found. Nothing too spectacular. Just what I have found to work best for my Droids. (I have had multiple.)

    Let me know if this helps your Droid or not. Do not attempt to use on any other Android phone, including Milestone. (Unless you are manually adding in changed entries.) All you will do is cause your phone to be completely inoperable. I use Cyanogen, however, it shouldn't really matter what ROM this is used on. It's not really specific.

    Code:
    # begin phone identification props
    ro.build.id=FRG83D
    ro.build.display.id=GRJ22
    ro.build.version.incremental=75603
    ro.build.version.sdk=10
    ro.build.version.codename=REL
    ro.build.version.release=2.3.4
    ro.build.date=Sun June 12 2011
    ro.build.type=user
    ro.build.user=android-build
    ro.build.tags=release-keys
    ro.product.model=Droid
    ro.product.brand=verizon
    ro.product.name=voles
    ro.product.device=sholes
    ro.product.board=sholes
    ro.product.cpu.abi=armeabi-v7a
    ro.product.cpu.abi2=armeabi
    ro.product.manufacturer=Motorola
    ro.product.locale.language=hdpi
    ro.board.platform=omap3
    
    # Do not try to parse ro.build.description or .fingerprint
    ro.build.description=voles-user 2.2.1 FRG83D 75603 release-keys
    ro.build.fingerprint=verizon/voles/sholes/sholes:2.2.1/FRG83D/75603:user/release-keys
    # end identification properties
    
    # Motorola RIL Proprietaries
    rild.libpath=/system/lib/libmoto_ril.so
    rild.libargs=-d /dev/ttyS0
    wifi.interface = tiwlan0
    
    # Defines the max events ui manager can handle in 1 s (max 300)
    windowsmgr.max_events_per_sec=260
    
    # Optimize TCP Stack for faster speeds
    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
    
    # Battery Savings (Sleep Mode)
    ro.ril.disable.power.collapse=0
    pm.sleep_mode=1
    
    # Render UI through GPU instead of CPU
    # Comment out if this causes laggy UI (it should speed up UI)
    debug.sf.hw=1
    
    # Proximit sensor screen off delay. (Default 450)
    mot.proximity.delay=75
    
    # Smaller number = smaller icons, text, etc.
    ro.sf.lcd_density=240
    
    # Default network type.
    # 4 => CDMA / EVDO.
    ro.telephony.default_network=4
    
    # When moving through zones or losing signal, having a delay
    # smooths out constant disconnects and reconnects, which in turn
    # saves a ton of battery life!
    ro.mot.eri.losalert.delay=1000
    
    # Time between scans in seconds. Keep it high to minimize battery drain.
    wifi.supplicant_scan_interval = 420 #7 minutes. 5 minutes=300, 4 minutes=240
    
    # Indicate carrier OTA SP number schema
    # refer to frameworks/base/telephony/java/com/android/
    # internal/telephony/cdma/CDMAPhone.java for the schema:
    ro.cdma.otaspnumschema=SELC,1,80,99
    
    # The OpenGL ES API level that is natively supported by this device.
    # This is a 16.16 fixed point number
    ro.opengles.version = 131072
    
    # This is a high density device with more memory, so larger vm heaps for it.
    dalvik.vm.startheapsize=8m #Allows the system to start at a lower heap size and rank up as needed.
    dalvik.vm.heapsize=40m
    
    #
    # Begin giant clumb of props
    #
    ro.setupwizard.enterprise_mode=1
    ro.com.google.clientidbase=android-verizon
    ro.com.google.locationfeatures=1
    ro.url.legal=http://www.google.com/
    ro.url.legal.android_privacy=http://www.google.com/
    ro.cdma.home.operator.numeric=310004
    ro.cdma.home.operator.alpha=Verizon
    ro.cdma.homesystem=64,65,76,77,78,79,80,81,82,83
    ro.cdma.data_retry_config=default_randomization=2000,0,0,120000,180000,540000,960000
    ro.config.vc_call_vol_steps=7
    ro.cdma.otaspnumschema=SELC,1,80,99
    ro.telephony.call_ring.multiple=false
    ro.telephony.call_ring.delay=500
    ro.url.safetylegal=http://www.motorola.com/
    ro.setupwizard.enable_bypass=1
    ro.media.dec.jpeg.memcap=20000000
    dalvik.vm.lockprof.threshold=500
    dalvik.vm.dexopt-flags=m=y
    keyguard.no_require_sim=true
    ro.url.legal=http://www.google.com/
    ro.url.legal.android_privacy=http://www.google.com/
    ro.com.android.dateformat=MM-dd-yyyy
    ro.com.android.dataroaming=false
    ro.config.ringtone=Playa.ogg
    ro.config.notification_sound=regulus.ogg
    ro.config.alarm_alert=Alarm_Beep_03.ogg
    ro.modversion=CyanogenMod-7.1.0-RC0-Droid
    ro.setupwizard.mode=OPTIONAL
    dalvik.vm.dexopt-flags=m=y
    net.bt.name=Android
    dalvik.vm.stack-trace-file=/data/anr/traces.txt
    How do I apply these and try them out?
    Easiest way is to use a program like Root Explorer and navigate to your build.prop in /system and copy that over to the SD and use your computer and either delete everything in it and replace with mine, or just add the entries you want. You can also just edit the file directly and manually add the values you want (pay attention to typos, anything not recognized will be skipped).

    It will probably be beneficial to reboot your phone at least twice for these values to take affect.
    Last edited by 0vermind; 06-15-2011 at 05:23 PM.
    Mike Lierman. Entrepreneur. Founder and CEO of Invise Solutions.
    Sync your files online, and across computers and phones, with Dropbox. 2GB account is free!

    I'm selling the domain investgy.com. Registered until 2016. Go to the website to make an offer. :P
  2. Sponsor
    DF Advertising
    Join Date
    Nov 2008
    Location
    DroidForums.net
     
     
     
     
  3. Developer
    winner00's Avatar
    Member #
    4915
    Join Date
    Nov 2009
    Location
    Utah
    Posts
    1,112
    Liked
    57 times
    Twitter
    expertontech
    Phone
    LTE Galaxy Nexus
    DroidForums.net Developer
    Premium Member
    #2
    Very nice! I will have to try this out!
    Galaxy Nexus Setup
    Rom: My CM9 Kang
    Kernel: franco Nightly #135

    Theme: ICS
    Launcher: Trebuchet
    Recovery: Team Win 2.1


    Twitter: expertontech
    CM7 Thread with My Build for OG Droid





    Thanks for the donation!
  4. Master Droid
    zachdroid's Avatar
    Member #
    131349
    Join Date
    Oct 2010
    Posts
    553
    Liked
    7 times
    Twitter
    zachdroid
    Phone
    Galaxy Nexus
    #3
    Should this be copied and pasted replacing current build prop file or is it something that needs to be built into the rom during the compiling of it?

    Sent from my Droid using DroidForums
    Tapping screen as I talk to myself on my Bootstrapped Bionic
  5. Developer
    winner00's Avatar
    Member #
    4915
    Join Date
    Nov 2009
    Location
    Utah
    Posts
    1,112
    Liked
    57 times
    Twitter
    expertontech
    Phone
    LTE Galaxy Nexus
    DroidForums.net Developer
    Premium Member
    #4
    Quote Originally Posted by zachdroid View Post
    Should this be copied and pasted replacing current build prop file or is it something that needs to be built into the rom during the compiling of it?

    Sent from my Droid using DroidForums
    I pulled my build.prop from my phone, edited it on my computer by pasting only the changes into it, and then put it back on my phone and it seems to be working good so far.
    Galaxy Nexus Setup
    Rom: My CM9 Kang
    Kernel: franco Nightly #135

    Theme: ICS
    Launcher: Trebuchet
    Recovery: Team Win 2.1


    Twitter: expertontech
    CM7 Thread with My Build for OG Droid





    Thanks for the donation!
  6. Master Droid
    GohanBurner's Avatar
    Member #
    7386
    Join Date
    Nov 2009
    Location
    Waukesha, WI
    Posts
    515
    Liked
    5 times
    Phone
    Google Galaxy Nexus
    #5
    Going to give this a shot.
  7. Senior Droid
    rafiki1's Avatar
    Member #
    189475
    Join Date
    Apr 2011
    Posts
    116
    Phone
    Droid
    #6
    Anyone try this? Any opinion?

    Sent from my Droid using Tapatalk
  8. Master Droid
    jengas kahn's Avatar
    Member #
    174308
    Join Date
    Feb 2011
    Location
    upstate
    Posts
    259
    Liked
    9 times
    Phone
    MOTOR DRUID
    #7
    i'm really wanting to try this but i'm on a frg22d rom right now...

    screw it, i'll try it anyway.
  9. Master Droid
    bigeric828's Avatar
    Member #
    177481
    Join Date
    Mar 2011
    Posts
    510
    Liked
    4 times
    Phone
    Enter Current Phone Model Here
    #8
    the tcp tweak causes my 3g to not work

    Edit: rebooted again and its fine now.
    Last edited by bigeric828; 06-13-2011 at 09:56 AM.
  10. Droid
    Wetzilla's Avatar
    Member #
    18690
    Join Date
    Dec 2009
    Posts
    90
    Phone
    Enter Current Phone Here
    #9
    Quote Originally Posted by winner00 View Post
    Quote Originally Posted by zachdroid View Post
    Should this be copied and pasted replacing current build prop file or is it something that needs to be built into the rom during the compiling of it?

    Sent from my Droid using DroidForums
    I pulled my build.prop from my phone, edited it on my computer by pasting only the changes into it, and then put it back on my phone and it seems to be working good so far.

    Is it working better than the build.prop for your builds? And if so, will you be including it in your nightly builds?
  11. Developer
    winner00's Avatar
    Member #
    4915
    Join Date
    Nov 2009
    Location
    Utah
    Posts
    1,112
    Liked
    57 times
    Twitter
    expertontech
    Phone
    LTE Galaxy Nexus
    DroidForums.net Developer
    Premium Member
    #10
    Quote Originally Posted by Wetzilla View Post
    Quote Originally Posted by winner00 View Post
    Quote Originally Posted by zachdroid View Post
    Should this be copied and pasted replacing current build prop file or is it something that needs to be built into the rom during the compiling of it?

    Sent from my Droid using DroidForums
    I pulled my build.prop from my phone, edited it on my computer by pasting only the changes into it, and then put it back on my phone and it seems to be working good so far.

    Is it working better than the build.prop for your builds? And if so, will you be including it in your nightly builds?
    Yea I will include some of these in my build. I will be testing it today to see how everything goes.
    Galaxy Nexus Setup
    Rom: My CM9 Kang
    Kernel: franco Nightly #135

    Theme: ICS
    Launcher: Trebuchet
    Recovery: Team Win 2.1


    Twitter: expertontech
    CM7 Thread with My Build for OG Droid





    Thanks for the donation!
Page 1 of 4 1 2 3 ... LastLast

Ads

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Similar Threads

  1. Purpose of /system/build.prop vs /local/local.prop?
    By thinkmega in forum Droid Hacks
    Replies: 0
    Last Post: 11-25-2010, 11:50 AM
  2. HELP - build.prop
    By dwestphal in forum Droid Incredible Tech Support
    Replies: 12
    Last Post: 10-01-2010, 02:39 PM
  3. build prop for ota 2.2
    By cgrimm9 in forum Droid X Hacks
    Replies: 3
    Last Post: 09-24-2010, 01:44 PM
  4. Build.prop and OTA 2.2
    By YukonCornelius in forum Droid X Hacks
    Replies: 3
    Last Post: 09-22-2010, 01:23 PM
  5. build.prop
    By ohioDroid in forum Droid Hacks
    Replies: 1
    Last Post: 04-26-2010, 11:57 PM

Search tags for this page

build prop gpu
,
build prop tweaks cm7
,

build.prop

,
build.prop network
,
build.prop optimize
,
build.prop tweaks
,

cm7 build.prop

,
cm7 build.prop tweaks
,

cyanogenmod build.prop

,
cyanogenmod build.prop tweaks
,
optimize build.prop
,
optimize tcp stack android
,
optimizing build prop
,
ro.board.platform
,
ro.cdma.otaspnumschema
Click on a term to search our site for related topics.
Find us on Google+