Related
how do i enable/disable JIT with recent kernel/ froyo rom
I've read that some cookers keep it enable while other one don't
I would like to test the difference on Thoughtlesskyle's
I think you can enable it when you compile a version of new build... Maybe you can ask to Thoughtlesskyle if he can do it for you
Happy new year.
Cheers.
chourmovs said:
how do i enable/disable JIT with recent kernel/ froyo rom
I've read that some cookers keep it enable while other one don't
I would like to test the difference on Thoughtlesskyle's
Click to expand...
Click to collapse
manu33xtro said:
I think you can enable it when you compile a version of new build... Maybe you can ask to Thoughtlesskyle if he can do it for you
Happy new year.
Cheers.
Click to expand...
Click to collapse
happy new year manu
i just want the command line or the script to do the trick (ie: sh jitenable.sh like compcache or something about dalvik i don't remember)
and another one to verify if it is enable/turned on
I've already read it on several topic but no way to find it again
my wish for 2011 : a good and complete wiki for polaris android user with all this explained
I think it's in the build.prop
enable
dalvik.vm.execution-mode=int:jit
disable
dalvik.vm.execution-mode=int:fast
meknb said:
I think it's in the build.prop
enable
dalvik.vm.execution-mode=int:jit
disable
dalvik.vm.execution-mode=int:fast
Click to expand...
Click to collapse
i see thank you
in CM, we can enable/disable it via option panel so i thought it was possible "live" with every mod with the good kernel
Hi guy,
Happy new year
Can you put here the results of your tests ?
Cheers.
chourmovs said:
i see thank you
in CM, we can enable/disable it via option panel so i thought it was possible "live" with every mod with the good kernel
Click to expand...
Click to collapse
Of course i'll do it
You could probably set it live with setprop ie
setprop dalvik.vm.execution-mode int:fast
Click to expand...
Click to collapse
Not 100% sure as i havent a android device at the moment to test on?
meknb said:
You could probably set it live with setprop ie
Not 100% sure as i havent a android device at the moment to test on?
Click to expand...
Click to collapse
thx, i did an androidupdate.tar with properly configurated built.prop
It doesn't hurt the system but i'm not really sure of my conclusion
Linpack score didn't change a lot in fact...
I wait for better explanation/instruction, if any
Hi all! i liked to introduce my own build.prop tweaks that i got from my FRIEND IN GTALK :i know a lot of you think that build.prop is just a file that will let you modify the ROM name in about phone but build.prop is actually a configuration file you write a line of code into build.prop and that line tells the android system what to do.
for example lets take
Code:
debug.sf.hw=X
now this line tells the android OS how to render the UI,
Code:
debug.sf.hw=0
means that the OS uses CPU to render UI and if its
Code:
debug.sf.hw=1
it means that OS uses GPU to render the UI. (notice that we dont have this line in build.prop because our phone CPU and GPU sucks )
ok so now that you all know what build.prop can do lets get to the actual tweaks
**NOTE! If you dont have these lines on build.prop just add them to the last line in build.prop, BUT if you have these then you can just change the values
1.) save power while phone is in sleep mode
Code:
ro.ril.disable.power.collapse=1
2.) make the phone ring faster when dialing out
Code:
ro.telephony.call_ring.delay=1000
3.) make UI and scrolling more responsive (notice that this line should already be in build.prop but with different value)
Code:
windowsmgr.max_events_per_sec=150
4.) save battery by decreasing the amount of time Wifi looks for an access point (now it searchs an wifi acces point every 1.5 minute instead of 45secs)
Code:
wifi.supplicant_scan_interval = 150
5.) Change the Dalvik VM heap size (this line is also in build.prop, you can change the value whatever you like and test if it makes your system more stable but 32m is recommended, and in my phone its 32m by stock)
Code:
dalvik.vm.heapsize=32m
6.) disable usb debugging popup
Code:
persist.adb.notify=0
7.) get better signal and data
Code:
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
8.) enable JIT
Code:
dalvik.vm.execution-mode=int:jit
9.) disable JIT
Code:
dalvik.vm.execution-mode=int:fast
10.) fix that SUPER annoying black screen after/during call (i think its in build.prop already but with higher values)
Code:
mot.proximity.delay=150
11.) to enable lockscreen unlocking with menu button (true=enable and false=disable)
Code:
ro.config.hw_menu_unlockscreen=false
12.) change the lcd density (icons become smaller and you can gett more stuff on your home screen)(change to any value and test it ) **NOTE** this is just an example value
Code:
ro.sf.lcd_density=225
13.) enable Stagefright helps stream Video and Music Faster but may not let you watch recorded videos
Code:
media.stagefright.enable-player=true
media.stagefright.enable-meta=true
media.stagefright.enable-scan=true
media.stagefright.enable-http=true
ok. now to another tweaks ok so i recently got a bunch of build.prop code from my friend because i helped him on xda but i have no idea what they mean so here they are! (if you know what these mean please leave a reply and share your knowledge!)
Code:
persist.sys.use_dithering=0
Code:
persist.sys.purgeable_assets=1
Code:
dalvik.vm.dexopt-flags=m=y
Mod edit : removed the same dont use huge bold letters pls it looks like ur screaming
**note: my friend gave me most of these tweaks, the only ource i used besides my friend is this, now PLEASE stop quessing the source
MORE TO COME!
P.S ROM devs are free to use these tweaks, just give me the credits and a thanks
reserved for later use
Hmm nice... and very useful ) Congratulations
Our galaxy 3 is becoming epic phone
benzyniarz1 said:
Hmm nice... and very useful ) Congratulations
Click to expand...
Click to collapse
yes it is and nobody in G3 forums hasnt posted these before me... odd
Thank you excellent work mate !!! :d
Think you forgot to give credits! !
androidforums.com/droid-x-all-things-root/164447-mod-lots-build-prop-edits.html
And what about the build.prop of pox 1.5
Must have something more too right
Anyways nice share
Read them long ago on android.com(removed now) but never tried
Rapier07 said:
Think you forgot to give credits! !
androidforums.com/droid-x-all-things-root/164447-mod-lots-build-prop-edits.html
Click to expand...
Click to collapse
no i didnt... as said my friend gave me these there is only 2 tweaks i took from another site (not xda)
cdesai said:
And what about the build.prop of pox 1.5
Must have something more too right
Anyways nice share
Read them long ago on android.com(removed now) but never tried
Click to expand...
Click to collapse
no, most of these are on POX v.1.5 build.prop
jazux said:
no, most of these are on POX v.1.5 build.prop
Click to expand...
Click to collapse
Please provide the modified build.prop
Here is the source
http://forum.xda-developers.com/showthread.php?t=1151608
All my roms have that tweaks
ash!sh said:
Here is the source
http://forum.xda-developers.com/showthread.php?t=1151608
All my roms have that tweaks
Click to expand...
Click to collapse
your right, but only 1 tweak is from there you do realize that internet is FULL of sites telling these tweaks (and i have looked 3 diff websites ) and as said almost ALL OF THESE TWEAKS i got from my friend (i have no idea where he got these ), so dont come here to tell what the source is!
is it possible to implement all tweaks into zip updateable via CWM?
max5800 said:
is it possible to implement all tweaks into zip updateable via CWM?
Click to expand...
Click to collapse
yes, but theres so many tweaks... i think its better to apply them manually, its not hard just open root explorer and go to /system, press R/W button and then find build.prop, long press it and choose "open in text editor"
jazux said:
so dont come here to tell what the source is!
Click to expand...
Click to collapse
The first line of your thread:
jazux said:
Hi all! i liked to introduce my own build.prop tweaks that i made
Click to expand...
Click to collapse
Hence the need for giving out sources!!
You shouldn't present someone else's work as your own!!!
Rapier07 said:
The first line of your thread:
Hence the need for giving out sources!!
You shouldn't present someone else's work as your own!!!
Click to expand...
Click to collapse
You should also read the WHOLE thread before replying
jazux said:
You should also read the WHOLE thread before replying
Click to expand...
Click to collapse
Yeah I did ! and fyi I've been using these tweaks since long.. no offence but you haven't invented those tweaks! There's no way you can call them your own!!
guys, please chill out...however it is, jazux is sharing some knowledge...
if anyone else had known about the tweaks, then they should have shared it with everyone instead of complaining what the original source is
Testing this now good find [[]]
dharamg3 said:
guys, please chill out...however it is, jazux is sharing some knowledge...
if anyone else had known about the tweaks, then they should have shared it with everyone instead of complaining what the original source is
Click to expand...
Click to collapse
Agreed.. i dont have anything against him but what bothers me is people using someone else's work under their name.. that's injustice flto the original dev.. it doesn't take much to give credits, does it?
FEEL FREE TO COMMENT AND THANK ME
Notes....
**17/3/12 UPDATED TO V6 **
**DUE TO IDIOTIC BEHAVIOUR AND A LOT OF CRYING 17KICKASSKERNELIZER WAS REMOVED**
**IF YOU HAVE ALREADY INSTALLED V6 SUPERCHARGER UNINSTALL IT BEFORE FLASHING THE ZIP**
(Basically dont use v6 supercharger at all)
This is a zip file that contains all (most) of the tweaks available here in XDA forums. It's so amazing.There is no risk of bricking or something else as it only contains some scripts that execute at boot
What's included ? :
-> Build.prop script Made especially by me
-> loopy smoothness tweak
(credits to lpy)
-> CFSK script,sqlite_optimize script,touchscreen tweak(ALL THESE 3 FROM Thunderbolt!)(credits to Pikachu01)
-> Screenstate_Scaling tweak (Credits to Slaid480)
-> Cleaning script That clears dalvik-cache and cache useless files
(Credits to Slaid480)
-> Kernel tweaking script (No need to download sysctl.conf anymore )
(Thanks to booster buster tweak)
-> Governor tweaks and some more minor tweaks
-> defragging script, zippaligning <-(credits to darky)(credits to gabwerkz)
-> UI tweaks,sd card tweaks and performance tweaks(credits to DynamicRam)
-> Disabled Verify-bytecode For Better resposing and More free RAM(credits to nibraas_reeza)
-> Live wallpapers hack in order to make them smoother (credits to despotovski01!)
-> System_server from Fugu tweaks(credits to ForeverSupra)
-> Sqlite optimizer from Lightning zap tweaks(credits to thomas.raines)
-> Speedy tweaks(credits to 0vermind)
-> Logger disabling script(If you want your logger to work then delete 02logger)
INSTALLATION : SIMPLY FLASH THROUGH CWM RECOVERY
..Benefits after flashing the zip ..
Vm management memory tweaks so that your apps perform better
The Loopy smoothness tweak that tweaks your launcher and system UI
Zippaligning and Verify-Bytecode tweak fore More free and Less RAM usage
SD card tweak for better read/write speed
Kernel tweaks for more battery life and slightly more performance!
Less lag in phone calls
better scrolling in contacts/menus/folders/homescreen
Smoother live wallpapers!!
System_server from android 4.0 for efficient system funcionality and performance!
System processes priority tweaks (phone,sms etc..)Makes switching between them faster!!
Build.prop tweaking script for battery/performance etc...
Optimized sqlite and I/O tweaks for better quadrant scores/other benchmarking apps
More...
YOU CAN ALSO TRY OUT THOSE BUILD.PROP TWEAKS
[SOME BUILD.PROP TWEAKS THAT CAN ALSO HELP]
(just open build.prop and copy them to the end of the file.Please report if they work on your phone/rom )
[EXPERIMENTAL](Thanks Master&Slave )
This might give you better video recording and picture taking results
ro.media.capture.maxres=8m
ro.media.capture.fast.fps=4
ro.media.capture.slow.fps=120
ro.media.panorama.defres=3264x1840
ro.media.panorama.frameres=1280x720
ro.camcorder.videoModes=true
ro.media.enc.jpeg.quality=95
(wi-fi speed increase tweaks)
net.ipv4.tcp_ecn=0
net.ipv4.route.flush=1
net.ipv4.tcp_rfc1337=1
net.ipv4.ip_no_pmtu_disc=0
net.ipv4.tcp_sack=1
net.ipv4.tcp_fack=1
net.ipv4.tcp_window_scaling=1
net.ipv4.tcp_timestamps=1
net.ipv4.tcp_rmem=4096 39000 187000
net.ipv4.tcp_wmem=4096 39000 187000
net.ipv4.tcp_mem=187000 187000 187000
net.ipv4.tcp_no_metrics_save=1
net.ipv4.tcp_moderate_rcvbuf=1
DOWNLOAD THE FILE AT THE END OF THE POST(will upload to mediafire the next release) ^^
[SetCPU]
Are you using "on demand scaling"?You might wanna try these
Sampling -> 200000
Up Threshold -> 50
Down Thresold ->25
Ignore Nice Load -> 0
{Up/down thresold is responsible for scaling up/down CPU frequency(That means that when cpu hits the % you have set the prossecor will scale up and hit from (example) 245 mhz to 400 mhz
50% is fair because if you set it too high the phone will be slow and unresponsive.On the other hand if you set it to low then it will drain your battery faster
ALWAYS HAVE A BACKUP AVAILABLE IN CASE SOMETHING GOES WRONG
THANKS AGAIN THE ORIGINAL DEVELOPERS OF THE SCRIPTS ALL CREDITS GO TO THEM
**CHANGELOG**
V1=the first .zip file
V2=Added loopy_smoothness tweak v2(TweakZV1 had the older version)and changed some VM management tweaks
V3=Added the live wallpapers script for smoother live wallp's
Added the system_server file from android 4.0 for better responding times
Added some priority tweaks that change the system apps priority(like phone,sms) for faster switching between them
Added some network and wifi speed tweaks
V4=Added screenstate_scaling tweak that tweaks cpu when screen is off,The cleaner script that clears unnessecary Files from dalvik-cache and cache folders
Added the kernel tweaking script,And some minor tweaks for battery+speed
V5=Resigned the zip,Build.prop tweaking script that autoapplies tweak(Made by me),Sqlite optimizer and more miscellanous tweaks
V6=Cleared up the scripts,removed 17kickasskernelizer,added 02logger(Disables logger) And corrected the updater-script now the scripts have their permissions set properly and DO RUN at BOOT
Is this a universal script?
Is it compatible w by supercharger script?
Supercharged GingerVolt B-) R U ?
Can I flash this I'm running miui 1.9.23 v6supercharger and loopy smoothness
Sent from my DROIDX using XDA App
bhp117 said:
Is this a universal script?
Is it compatible w by supercharger script?
Supercharged GingerVolt B-) R U ?
Click to expand...
Click to collapse
what do you mean by universal ?
yes its compatible with supercharger
omeomyo said:
Can I flash this I'm running miui 1.9.23 v6supercharger and loopy smoothness
Sent from my DROIDX using XDA App
Click to expand...
Click to collapse
yes of course you can just open the zip and delete the loopy_smoothness tweak because it will overwrite your settings
[email protected] said:
what do you mean by universal ?
yes its compatible with supercharger
Click to expand...
Click to collapse
Does it work with all phones and roms
Supercharged GingerVolt B-) R U ?
I removed some of the scripts, it conflicts some of it
Sent from my LG-P500 using Tapatalk
bhp117 said:
Does it work with all phones and roms
Supercharged GingerVolt B-) R U ?
Click to expand...
Click to collapse
yep.. (confirm it tho)
dnle71 said:
I removed some of the scripts, it conflicts some of it
Sent from my LG-P500 using Tapatalk
Click to expand...
Click to collapse
okay if you find any bugs tell me
Thanks ill give it a go
Sent from my HTC Glacier using XDA App
formeforfree said:
Thanks ill give it a go
Sent from my HTC Glacier using XDA App
Click to expand...
Click to collapse
no probzz report bugs(if there are any)
I tried this on my huawei u8500 with cm7 belive it works thanks :thumbup:
Sent from my U8500 using Tapatalk
Thanks for sharing this it work !
ekstrom79 said:
I tried this on my huawei u8500 with cm7 belive it works thanks :thumbup:
Sent from my U8500 using Tapatalk
Click to expand...
Click to collapse
no problem!
Taxi341 said:
Thanks for sharing this it work !
Click to expand...
Click to collapse
i m glad you like it
Problem occured in Tweakz3.zip cause bad installation script...!!!
((( RedDeviL ))) said:
Problem occured in Tweakz3.zip cause bad installation script...!!!
Click to expand...
Click to collapse
oh damn im sorry i ll re upload it
thanks for reporting
[email protected] said:
oh damn im sorry i ll re upload it
thanks for reporting
Click to expand...
Click to collapse
Did u managed to replace the script file....
((( RedDeviL ))) said:
Did u managed to replace the script file....
Click to expand...
Click to collapse
yes ive reuploaded it..you can now download it i flashed it to my phone <3
Cannot install still the script error bad 6....
Please check....
The earlier one v2 is ok if flash.....
Problem in V3....
When i check the script looks like nothing change all same only....
I was searching for build.prop tweaks supporting Note 3, but they were hard to find so I compiled on my own and have been running these tweaks successfully. These are old tweaks but are working better on new phone
I am posting these tweaks here and a user can use any tool like root explorer to edit build.prop file.
/* APPLY AFTER LAST LINE */
debug.performance.tuning=1
debug.sf.nobootanimation=0
net.tcp.buffersize.default=6144,87380,110208,6144,16384,110208
net.tcp.buffersize.edge=6144,26280,35040,6144,16384,35040
net.tcp.buffersize.evdo_b=6144,262144,1048576,6144,262144,1048576
net.tcp.buffersize.gprs=6144,8760,11680,6144,8760,11680
net.tcp.buffersize.hsdpa=6144,262144,1048576,6144,262144,1048576
net.tcp.buffersize.hspa=6144,87380,262144,6144,16384,262144
net.tcp.buffersize.lte=262144,524288,3145728,262144,524288,3145728
net.tcp.buffersize.umts=6144,87380,110208,6144,16384,110208
net.tcp.buffersize.wifi=262144,524288,1048576,262144,524288,1048576
persist.adb.notify=0
persist.sys.purgeable_assets=1
pm.sleep_mode=1
ro.camera.sound.forced=0
ro.config.hw_new_wifitopdp=1
ro.config.nocheckin=1
ro.HOME_APP_ADJ=1
ro.kernel.android.checkjni=0
ro.media.dec.aud.flac.enabled=1
ro.media.dec.aud.wma.enabled=1
ro.media.dec.jpeg.memcap=8000000
ro.media.dec.vid.avi.enabled=1
ro.media.dec.vid.wmv.enabled=1
ro.media.enc.hprof.vid.bps=8000000
ro.media.enc.jpeg.quality=100
ro.ril.disable.power.collapse=1
ro.ril.enable.amr.wideband=1
video.accelerate.hw=1
wifi.supplicant_scan_interval=120
windowsmgr.max_events_per_sec=150
windowsmgr.support_rotation_270=true
mot.proximity.delay=0
touch.pressure.scale=0.001
ro.telephony.call_ring.delay=0
It's successfully working on N9005 but you may try it on other versions(SM900....), you will definitely see improvements in performance and battery life.
Good Old Advice:
USE AT YOUR OWN RISK AND ALWAYS MAKE A BACKUP BEFORE EXPERIMENTING
Credits:
To all developers
To Google for ANDROID OS
To Samsung for magnificent harwdware
To everyone who has tested and created this tweak(s).
Reserved.
Thanks.
Sent from my SM-N9005 using Tapatalk
Do these also work on CM11 ROMs?
Sent from my SM-N9005 using xda app-developers app
davitox87 said:
Do these also work on CM11 ROMs?
Sent from my SM-N9005 using xda app-developers app
Click to expand...
Click to collapse
Tested it on TouchWiz Stock ROM working nicely, but was using the same kinda settings in note 1, there was no issues so yes it CAN work try it.
It won't do any harm.
Working Well on CM11 4.4.2 KitKat..!!!
This mod works very well on CM11 running very smoothly.
Sorry if its off topic but I never noticed any improvements during the years with build prop. Please read this http://androidforums.com/merit-all-things-root/643445-info-build-prop-tweaks-useless-most-them.html
hi there.. i just copy those text line into the build.prop under additional build properties.. am i doing it correctly?
mervin8706 said:
hi there.. i just copy those text line into the build.prop under additional build properties.. am i doing it correctly?
Click to expand...
Click to collapse
Yes, but make a backup of original build.prop by copying it to SDCARD.
At the risk of sounding ignorant, what do some of these do?
coppertop24 said:
At the risk of sounding ignorant, what do some of these do?
Click to expand...
Click to collapse
Because theres so many of them your best bet would be to google each one..and learn what each one does.....It would take someone to write a novel on these...and you may still not understand. ..I googled these through years of research and once you understand believe me you'll be so happy you did it on your own pace and learned them.
Also guys make sure that you do not already have them in your build prop list....90% of the roms out already have most of these, You DO NOT want to add duplicates of them. .
wish777 said:
Because theres so many of them your best bet would be to google each one..and learn what each one does.....It would take someone to write a novel on these...and you may still not understand. ..I googled these through years of research and once you understand believe me you'll be so happy you did it on your own pace and learned them.
Also guys make sure that you do not already have them in your build prop list....90% of the roms out already have most of these, You DO NOT want to add duplicates of them. .
Click to expand...
Click to collapse
:good::good::good::good::good::good::good::good:
Tweaks Updated...!!!
Junior dev bndtme xda
Jack Barrett said:
Sorry if its off topic but I never noticed any improvements during the years with build prop. Please read this http://androidforums.com/merit-all-things-root/643445-info-build-prop-tweaks-useless-most-them.html
Click to expand...
Click to collapse
I found what you have stated above to be very true long ago. Just took for granted that everyone else knew that biuld prop chsnges are bogus and don't work. Most people probaly do not know plane txt code only works till you reboot. Both are similar. People both methods do not work.
Thread closed at OP request.
@bipinbedi feel free to PM me anytime you want this thread open.
Thanks
Razvan
Forum Moderator
With such a great hardware, and with Root acquired, its time to build optimizations through the Build.prob settings file.
Please share your VERIFIED tweaks and/or additions that will enhance overall performance and Battery life.
Using Build.prob can easily have a very good impact on this beast without too much effort.
Make sure to BACKUP your stock file which is located in SYSTEM folder, just in case things gets messed up during the process.
I also want you guys to share HOW to revert to an older backup of the Build.prob file if the phone bootloops or does not complete a bootup after entering wrong values.
So far I tried the infamous ( wifi.supplicant_scan_interval = 300 )
Thats 5 minutes scan instead of 15 seconds, this is just perfect for the Battery.
Next up is using the faster and more secure Google DNS Servers
net.dns1=8.8.8.8
net.dns2=8.8.4.4
Finally, there is a robust thread for the OPO that utilizes various Tweaks, we just need to Cheat and use some of them on our v10, but as always, Play Safe, Use Condoms
Link is :
https://forums.oneplus.net/threads/updated-best-build-prop-tweaks-for-your-opo.317488
UPDATE, TITLE FIXED, my bad !
Regards;
Will
as per @Exconvict here http://forum.xda-developers.com/showpost.php?p=64691742&postcount=3, changing "persist.splitwindow.support_all" to true gives accessibility to all apps in the MultiWindow selection.
What app did you use to change the WiFi scan interval without having problems with the stock kernel stalling?
Amd4life said:
What app did you use to change the WiFi scan interval without having problems with the stock kernel stalling?
Click to expand...
Click to collapse
Stalling where? I just edited the build.prop (prior to this thread) with FX File Explorer.
is there any reason why I dont have the wifi.supplicant or google dns props on my build.prop file? I cant find it with build prop editor or using es file explorer?
stock/xposed
edit: nevermind I just realized I'm supposed to just add to the end of the build.prop
*build.prop
mikeyinid said:
*build.prop
Click to expand...
Click to collapse
Lmfao ???
Sent From My LG V10
Been trying some of these out... Namely battery life, RAM management, and IPv4 fixes... I'll post back soon...
Sent from my LG-H901 using Tapatalk
ZDeuce2 said:
Been trying some of these out... Namely battery life, RAM management, and IPv4 fixes... I'll post back soon...
Sent from my LG-H901 using Tapatalk
Click to expand...
Click to collapse
Please Do share with us your endeavors.
Thanks !
Following up with you guys, I'm mainly interested in a bit of Performance boost and some battery tweaks, we need an advanced user that can have a look at the link in OP for the OPO, and suggest some of the tweaks that are proven to work without hindering the v10.
Thanks.
persist.sys.purgeable_assets=1
persist.service.pcsync.enable=0
persist.service.lgospd.enable=0
Working....
# Support For IPV4 and IPV6
persist.telephony.support.ipv6=1
persist.telephony.support.ipv4=1
Working...
# GOOGLE DNS
net.dns1=8.8.8.8
net.dns2=8.8.4.4
net.rmnet0.dns1=8.8.8.8
net.rmnet0.dns2=8.8.4.4
net.ppp0.dns1=8.8.8.8
net.ppp0.dns2=8.8.4.4
net.wlan0.dns1=8.8.8.8
net.wlan0.dns2=8.8.4.4
net.eth0.dns1=8.8.8.8
net.eth0.dns2=8.8.4.4
net.gprs.dns1=8.8.8.8
net.gprs.dns2=8.8.4.4
Working...
ro.config.nocheckin=1
Working...
That's what I'm running right now, plus WiFi and signal tweaks I've posted in my thread in tmo v10 development.
Sent from my LG-H901 using Tapatalk
I just added these and now my phone is sitting at the LG boot logo lol.
ZDeuce2 said:
persist.sys.purgeable_assets=1
persist.service.pcsync.enable=0
persist.service.lgospd.enable=0
Working....
# Support For IPV4 and IPV6
persist.telephony.support.ipv6=1
persist.telephony.support.ipv4=1
Working...
# GOOGLE DNS
net.dns1=8.8.8.8
net.dns2=8.8.4.4
net.rmnet0.dns1=8.8.8.8
net.rmnet0.dns2=8.8.4.4
net.ppp0.dns1=8.8.8.8
net.ppp0.dns2=8.8.4.4
net.wlan0.dns1=8.8.8.8
net.wlan0.dns2=8.8.4.4
net.eth0.dns1=8.8.8.8
net.eth0.dns2=8.8.4.4
net.gprs.dns1=8.8.8.8
net.gprs.dns2=8.8.4.4
Working...
ro.config.nocheckin=1
Working...
That's what I'm running right now, plus WiFi and signal tweaks I've posted in my thread in tmo v10 development.
Sent from my LG-H901 using Tapatalk
Click to expand...
Click to collapse
Are these the same tweaks in the build prop of the latest greezepop?
ratchetrizzo said:
I just added these and now my phone is sitting at the LG boot logo lol.
Click to expand...
Click to collapse
And i cant manually get into recovery.
When I hold power and volume down during boot it just reboots eventually
same thing if i hold volume down and power, release at the lg logo then hold them down again.
If I hold all three down i get a white IMEI screen.
What am I doing wrong trying to get in recovery manually? I know its there cause I could boot in to it from the rom.
Edit...
I fixed it, i got twrp to manually boot from power off and restored the original build prop. I is retarded.
Now I'm going to mess with it again and see what I break
The added build properties work fine on my device running the initial greezPop release
Megaflop666 said:
Are these the same tweaks in the build prop of the latest greezepop?
Click to expand...
Click to collapse
No, none of these are yet... These are one I was messing around with yesterday... GreezePop is everything in my WiFi tweaks thread currently...
Sent from my LG-H901 using Tapatalk
---------- Post added at 05:15 PM ---------- Previous post was at 05:13 PM ----------
The top and bottom are battery/RAM management, other two are for WiFi connectivity.
Sent from my LG-H901 using Tapatalk
ZDeuce2 said:
No, none of these are yet... These are one I was messing around with yesterday... GreezePop is everything in my WiFi tweaks thread currently...
Sent from my LG-H901 using Tapatalk
---------- Post added at 05:15 PM ---------- Previous post was at 05:13 PM ----------
The top and bottom are battery/RAM management, other two are for WiFi connectivity.
Sent from my LG-H901 using Tapatalk
Click to expand...
Click to collapse
Link to your thread please ?
Willy318is said:
Link to your thread please ?
Click to expand...
Click to collapse
WiFi thread...
http://forum.xda-developers.com/showthread.php?t=3281170
Various mods thread...
http://forum.xda-developers.com/showthread.php?t=3292768
Sent from my LG-H901 using Tapatalk
Until the title of this thread is edited I just can't take it serious lol.
mikeyinid said:
Until the title of this thread is edited I just can't take it serious lol.
Click to expand...
Click to collapse
Damn, I just noticed that... Lol...
Sent from my LG-H901 using Tapatalk