No service? - Droid Eris Q&A, Help & Troubleshooting

Well ever since i started flashing different roms, i keep losing service out of no where, and while it says i have service the 3G cuts on and off by its self. help??

theboo7 said:
Well ever since i started flashing different roms, i keep losing service out of no where, and while it says i have service the 3G cuts on and off by its self. help??
Click to expand...
Click to collapse
Can you state what roms you have been switching/running?

Framework43 said:
Can you state what roms you have been switching/running?
Click to expand...
Click to collapse
CynageonEris
White Widow 3.1/4.1B
Evil Eris 2.01
Ic3

theboo7 said:
CynageonEris
White Widow 3.1/4.1B
Evil Eris 2.01
Ic3
Click to expand...
Click to collapse
Have you wiped for each one?
The problem probably has to do with the build.prop

Framework43 said:
Have you wiped for each one?
The problem probably has to do with the build.prop
Click to expand...
Click to collapse
yes both factory and dalvik

theboo7 said:
yes both factory and dalvik
Click to expand...
Click to collapse
So you don't have service right now?
do
adb shell cat /system/build.prop
and see what you get
and also, try reboot

Framework43 said:
So you don't have service right now?
do
adb shell cat /system/build.prop
and see what you get
and also, try reboot
Click to expand...
Click to collapse
okay i tried reboot.lol
and i will try the other option in a minute

Framework43 said:
So you don't have service right now?
do
adb shell cat /system/build.prop
and see what you get
and also, try reboot
Click to expand...
Click to collapse
C:\android\tools>adb shell cat /system/build.prop
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=EPE54B
ro.build.display.id=WhiteWidow
ro.build.version.incremental=eng.ameer.20100522.120820
ro.build.version.sdk=8
ro.build.version.codename=REL
ro.build.version.release=2.1-update1
ro.build.date=Sat May 22 12:08:53 CDT 2010
ro.build.date.utc=1274548133
ro.build.type=eng
ro.build.user=ameer
ro.build.host=darchstar
ro.build.tags=test-keys
ro.product.model=Eris
ro.product.brand=htc
ro.product.name=opal
ro.product.device=sapphire
ro.product.board=droid
ro.product.cpu.abi=armeabi
ro.product.manufacturer=HTC
ro.product.locale.language=en
ro.product.locale.region=US
ro.wifi.channels=
ro.board.platform=msm7k
# ro.build.product is obsolete; use ro.product.device
ro.build.product=desirec
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=Cyanogenmod by Andrizoid
ro.build.fingerprint=google/passion/passion/mahimahi:2.1-update1/ERE27/24178:use
r/release-keys
# end build properties
#
# system.prop for dream_sapphire
#
ro.sf.lcd_density=160
rild.libpath=/system/lib/libhtc_ril.so
# Default network type.
ro.telephony.default_network=4
#ro.cdma.home.operator.numeric=310120
#ro.cdma.home.operator.alpha=Verizon
#ro.cdma.homesystem=128,64
#ro.cdma.data_retry_config=default_randomization=960000,960000,960000,960000,960
000
ro.cdma.home.operator.numeric = 310012
ro.cdma.home.operator.alpha = Verizon
gsm.sim.operator.numeric = 0
gsm.sim.operator.alpha = 0
gsm.sim.operator.iso-country = 0
wifi.interface=tiwlan0
wifi.supplicant_scan_interval=15
# RIL settings
ro.ril.gprsclass=10
ro.ril.hsxpa=1
# Media settings
ro.media.enc.file.format = 3gp,mp4
ro.media.enc.vid.codec = m4v,h263
ro.media.enc.vid.h263.width = 176,352
ro.media.enc.vid.h263.height = 144,288
ro.media.enc.vid.h263.bps = 64000,800000
ro.media.enc.vid.h263.fps = 1,30
ro.media.enc.vid.m4v.width = 176,352
ro.media.enc.vid.m4v.height = 144,288
ro.media.enc.vid.m4v.bps = 64000,800000
ro.media.enc.vid.m4v.fps = 1,30
#
# ADDITIONAL_BUILD_PROPERTIES
#
#ro.rommanager.developerid=cyanogenmod
ro.modversion=Cyanogenmod-Andrizoid
ro.config.ringtone=DonMessWivIt.ogg
ro.config.notification_sound=pixiedust.ogg
ro.config.alarm_alert=Alarm_Classic.ogg
ro.com.android.wifi-watchlist=GoogleGuest
ro.setupwizard.enterprise_mode=1
ro.com.android.dateformat=MM-dd-yyyy
ro.com.android.dataroaming=false
ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html
ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/
privacy.html
ro.com.google.clientidbase=android-google
keyguard.no_require_sim=true
net.bt.name=Android
ro.com.google.locationfeatures=1
ro.com.google.gmsversion=2.1_r1
ro.config.sync=yes
dalvik.vm.stack-trace-file=/data/anr/traces.txt
dalvik.vm.execution-mode=int:jit
ro.media.dec.aud.wma.enabled=0
ro.media.dec.vid.wmv.enabled=0
ro.kernel.android.checkjni=1
ro.setupwizard.mode=OPTIONAL
net.bt.name=Android
ro.config.sync=yes
dalvik.vm.stack-trace-file=/data/anr/traces.txt
C:\android\tools>

Lower the case in "Verzion"
Change it from Verizon to verizon.

Framework43 said:
Lower the case in "Verzion"
Change it from Verizon to verizon.
Click to expand...
Click to collapse
what do you mean, and how do i do this?

ill do it and put out a patch. thank you for your round-about help Framework, maybe your not such a bad guy afterall

theboo7 said:
what do you mean, and how do i do this?
Click to expand...
Click to collapse
He means pull the file off your phone:
adb pull /system/build.prop c:/path/to/where/file/will/go (best to pull it straight to your SDK/tools directory)
and then change the "Verizon" tag near the bottom to "verizon" (with lowercase V)
and then push the file back on your phone:
adb remount
adb push build.prop /system
(make sure the edited build.prop file is in your sdk/tools directory)

n1ghtwish said:
He means pull the file off your phone:
adb pull /system/build.prop c:/path/to/where/file/will/go (best to pull it straight to your SDK/tools directory)
and then change the "Verizon" tag near the bottom to "verizon" (with lowercase V)
and then push the file back on your phone:
adb remount
adb push build.prop /system
(make sure the edited build.prop file is in your sdk/tools directory)
Click to expand...
Click to collapse
did this and yet still keeps acting up

Related

MMORPG Order & Chaos Online HD v1.0.2 Apk Working On Evo3D & Some Android Devices

MMORPG Order & Chaos Online HD v1.0.2 Apk Working On Evo3D & Some Android Devices
This should work on most Android device that have root,R/W access,s-off.ect
PLEASE NOTE THAT THIS GUIDE IS SHOWING YOU HOW TO GET THE OFFICIAL GAME DIRECTLY FROM MARKET
THE BENEFIT OF GETTING THE GAME THIS WAY INSTEAD OF THE HACK OR PATCH VERSION IS LISTED BELOW
1:The official version will allow you to make in-app purchase which can get you the nice items like experience stones which increase xp by 100%
2:You will be able to get the overpower super gears at later levels.
3:The Game just runs way smoother than the hack or patch version(NO LAG AT ALL)
4:You will be able to get the awesome future updates soon as they are available because of this method here
5:No crashes because it is the Official game directly from market.The crack/patch version is known for having Force Closes and Crashes.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
NOTE:Things you will need are Build.Prop Editor or Root Explorer which is what i used,ChainFire 3D and of course your phone need to be rooted with s-off and Superuser access,you should do a nand backup from custom recovery just incase u messed up somewhere.
CONFIRM:Before we begin,uninstall the patch/hack version if you have it installed,You may also delete the the old game cache folder GloftMMHM if you want a clean installation and a low chance of any problems or if you are getting unable to download message.
STEP 1:EDITING BUILD.PROP
This is where you are going to edit your build.prop to make market think your device is one of the compatible device for O&C and by doing that you will be able to see and download the game from Market directly.The changes you will be making to your build.prop are listed below.Keep in mind I didn't find the second line ro.product.model.internal= on Evo3D build.prop,but that line didn't matter it seems.
Some device have identical lines listed more than once,like for example Evo3D have two ro.product.model lines,so you must edit both lines if u see it more than once .
Make the following edit to your build.prop to make the game appear in market and u should be able download & install it.
Build.Prop #1 FOR HTC DEVICES IF THIS BUILD.PROP WORK FOR YOU,THEN YOU DONT HAVE TO FOLLOW THE OTHER EXTENDED STEPS
ro.product.brand=sprint
ro.product.model=PG06100
ro.product.name=htc_speedy
ro.product.device=speedy
ro.product.board=speedy
After you made the above change to your prop and save & reboot.Check market to see if u can download and install Order & Chaos.If you are able to see it but dont see the option to install it,then reboot your device a second time.If you are still unable to install the game then you have to refer to the addition steps below.
Make the change below to your prop if the above method didnt work for you and you will have to follow the additional steps if you have to use the build.prop below
BUILD.PROP #2 FOR NON HTC DEVICES
ro.product.model=Optimus 2X
ro.product.model.internal=
ro.product.brand=lge
ro.product.name=lge_star
ro.product.device=p990
ro.product.board=p990
Thanks to mattijuana from Atrix forum for settings
If you are using Root explorer,open it up then navigate to system then Build.prop,long press on it then select open up in text editor,make sure its mount as R/W and then make the above changes ONLY please,if u dont your device can get stuck in bootloop like mine did cause i was rushing and didnt capitalize what needed to be or maybe i didnt put space.
If you are using Build.Prop Editor app it simplify the process a little.
After you make the changes to your build.prop and save it you will need to reboot your device for the changes to take effect.
STEP 2:BUYING & INSTALLING THE GAME DIRECTLY FROM MARKET
Open up market and search for Order and Chaos and you should see it and able to download and install it because market thinks your phone is Optimus 2X(If you are able to see it but cant download it you might need old Market v2.3.6).Buy it and then install it then launch it and download the remaining data,its about 600mb plus in size so a fast connection would be nice.After that the game will launch properly but mine got stuck at the loading screen mainly because its looking for a NIVIDIA chip because your device is imitating a phone that use that NIVIDIA chip.So now we have to spoof our Qualcomm chip,thats where ChainFire comes in.Thanks Malebolgia from Whispering Island Server and guild leader of FORGOTTEN a level 60 guild for the information on ChainFire.
STEP 3:SPOOFING YOUR DEVICE QUALCOMM CHIPS WITH CHAINFIRE 3D PRO(HACK VERSION WOULD NOT WORK)
IF YOUR DEVICE ALREADY HAVE A NVIDIA CHIP,THEN YOU CAN PROBABLY SKIP THIS STEP
YOU WILL NEED CHAINFIRE 3D PRO VERSION FROM MARKET.....(CRACKED VERSION MAY NOT WORK)....
You will need the ChainFire3D Pro version app from market and get the pro version so you can install your own driver and apply pro version features,The driver you will need is NVIDIA driver that you can find here http://www.megaupload.com/?d=4P9LEW7P or if this link is down or the file is deleted you will have to search for LibGLEMU_NVIDIA file in zip format on Google.
You will need to grant superuser access for ChainFire3D and when you first launch it you will need to install the CF3D(then if you Evo3D you may need to remove your battery to boot back up after installing CF3D driver if your device froze trying to reboot) that is already provided with the app then you will need to install the NVIDIA driver you downloaded and is on your SD card.For some reason when you install those two drivers on Evo3D your phone will not reboot unless you take the battery out after each driver installment then power on your device.
NOTE:
Some device don't lockup or freeze after installing CF3D & NIVIDA drivers and would require the battery to be remove to reboot,But my Evo3D does.
After you installed the require drivers and rebooted twice after each driver installment by taking out your battery cause it wouldnt reboot normaly after the drivers installment on Evo3D,Im not sure about other devices.Launch ChainFire then navigate to Pre-app OpenGL settings and select Order and Chaos app and apply the NIVDIA plugin thats on your SD card and then check HIDE CF3D ID and DUMP Shaders options.Then launch Order and Chaos app.It should now load up properly and you can create account or if u have one already sign in and create a character and join the Whisperin Island Server of America,the best sever in my opinion
STEP 4:YOU ARE DONE,NOW GO ENJOY THE GAME IF YOU FOLLOW THE STEPS ABOVE TO THE LETTER.
Getting in-app purchase to work require Market version 3.0.27 and above
Now you should have the game running fine if you follow the steps correctly and made a nand backup just for good measure.
Please Join The Whispering Island Server if you dont want to get Ganck by higher level players or you are unable to complete a quest because over 20 people is doing the same quest as you on the other crowded servers with lag issues.My Name is Kaizer a Lv60(Max) warrior and leader of legends guild with over 200 active members,Ask for invite to Legends guild on global chat within the game if you chose Whispering Island Server,hope you did.
This is how my HTC EVO 3D Build.prop look after editing.
ro.com.google.clientidbase=android-sprint-us
ro.com.google.clientidbase.yt=android-sprint-us
ro.com.google.clientidbase.am=android-sprint-us
ro.com.google.clientidbase.vs=android-sprint-us
ro.com.google.clientidbase.gmm=android-sprint-us
ro.com.google.clientidbase.ms=android-sprint-us
ro.phone.min_match=7
ro.product.model=Optimus 2X<-----EDITED LINE
ro.cdma.home.operator.alpha=sprint
gsm.sim.operator.alpha=sprint
gsm.operator.alpha=sprint
ro.cdma.home.operator.numeric=310120
gsm.sim.operator.numeric=310120
gsm.operator.numeric=310120
gsm.sim.operator.iso-country=us
gsm.operator.iso-country=us
# begin build properties
# autogenerated by buildinfo.sh
ro.aa.taskid=193975
ro.aa.romver=1.11.651.3
ro.aa.maincid=SPCS_001
ro.aa.modelid=PG8610000
ro.aa.cidlist=SPCS_001
ro.aa.rid=146
ro.aa.customizationid=184167
ro.aa.project=Shooter
ro.aa.skulist=651
ro.product.brand=lge
ro.product.model=Optimus 2X<------EDITED LINE
ro.aa.mainsku=651
ro.com.google.clientidbase=android-sprint-us
ro.build.id=GRI40
ro.build.display.id=GRI40
ro.build.version.incremental=69941
ro.build.version.sdk=10
ro.build.version.codename=REL
ro.build.version.release=2.3.3
ro.build.date=一 5月 23 22:21:14 CST 2011
ro.build.date.utc=1306160474
ro.build.type=user
ro.build.user=
ro.build.host=AA108
ro.build.tags=release-keys
ro.product.model=Optimus 2X<------EDITED LINE
ro.product.brand=lge<------EDITED LINE
ro.product.name=lge_star<------EDITED LINE
ro.product.device=p990<------EDITED LINE
ro.product.board=p990<------EDITED LINE
ro.product.cpu.abi=armeabi-v7a
ro.product.cpu.abi2=armeabi
ro.product.manufacturer=HTC
ro.product.locale.language=hdpi
ro.product.locale.region=
ro.wifi.channels=
ro.board.platform=msm8660
# ro.build.product is obsolete; use ro.product.device
ro.build.product=shooter
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=1.11.651.3 CL69941 release-keys
ro.build.description=1.11.651.3 CL69941 release-keys
ro.build.changelist=69941
ro.product.ua=
ro.build.fingerprint=sprint/htc_shooter/shooter:2.3.3/GRI40/69941:user/release-keys
ro.build.project=193975
ro.product.version=1.11.651.3
ro.build.languageremove=0
keyguard.no_require_sim=1
# end build properties
#
# system.prop for mahimahi
#
ro.sf.lcd_density=240
debug.fb.rgb565 = 0
#C2D
debug.composition.type = c2d
rild.libpath=/system/lib/libhtc_ril.so
# Default network type.
# 4 => CDMA mode preferred.
ro.telephony.default_network=4
#
# system props for the data modules
#
ro.use_data_netmgrd=true
persist.data_netmgrd_nint=8
persist.data_netmgrd_mtu=1472
#
wifi.interface=eth0
wifi.supplicant_scan_interval=15
# 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.
# Change to 32m, due to 2.3.3 GB already change to 32m
dalvik.vm.heapsize=32m
# For the default value of agps
ro.ril.def.agps.mode = 2
# For emmc phone storage
ro.phone_storage = 0
# For ext4 file system
ro.ext4fs = 1
# For FOTA setting (leave empty value to use default)
ro.htc.checkin.url = http://andchin.htc.com/android/checkin
ro.htc.checkin.crashurl = http://andchin.htc.com/android/crash
ro.htc.checkin.url_CN = http://andchin.htccomm.com.cn/android/checkin
ro.htc.checkin.crashurl_CN = http://andchin.htccomm.com.cn/android/crash
ro.htc.checkin.exmsg.url = http://fotamsg.htc.com/android/extra/
ro.htc.checkin.exmsg.url_CN = http://fotamsg.htccomm.com.cn/android/extra/
ro.htc.appupdate.url = http://apu-chin.htc.com/check-in/rws/and-app/update
ro.htc.appupdate.url_CN = http://apu-chin.htccomm.com.cn/check-in/rws/and-app/update
ro.htc.appupdate.exmsg.url = http://apu-msg.htc.com/extra-msg/rws/and-app/msg
ro.htc.appupdate.exmsg.url_CN = http://apu-msg.htccomm.com.cn/extra-msg/rws/and-app/msg
# release Bluetooth HW/SW information
ro.bt.chipset = Broadcom BCM4329-B1
ro.bt.stack = Broadcom BTL-A
ro.bt.stack.version = 2.0.50.032
#0x10000010010100101000011 represent bt profile list
ro.bt.profiles = 4270403
# Properties of BTLA stack
service.brcm.bt.activation = 0
service.brcm.bt.srv_active = 0
service.brcm.bt.hcid_active = 0
service.brcm.bt.btld = 0
service.brcm.bt.btld_pid = 0
service.brcm.bt.avrcp_pass_thru = 0
service.brcm.bt.avrcp_toggle = 1
#Welly_Fang
ro.htc.device.slot1 = NV
# Following property will be reference by Settings.
ro.product.processor = 1.2 GHz dualcore
ro.product.ram = 1GB
ro.product.display_resolution = 4.3 inch QHD resolution
ro.product.main_camera = 5M * 2
ro.product.front_camera = 1.3M
ro.product.bluetooth = 3.0
ro.product.wifi = 802.11 b/g/n
# For opensense sdk
ro.htc.common.version = 3.0.0.0
#
# ADDITIONAL_BUILD_PROPERTIES
#
ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html
ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/privacy.html
ro.com.google.networklocation=1
ro.setupwizard.mode=DISABLED
ro.setupwizard.mode=OPTIONAL
ro.config.ringtone=QuietlyBrilliant.mp3
ro.config.notification_sound=Zeta.mp3
ro.config.alarm_alert=NewDay.mp3
ro.config.cal_notification=Epsilon.mp3
ro.config.msg_notification=Gamma.mp3
ro.setupwizard.mode=DISABLED
ro.com.google.gmsversion=2.3_r3
media.a1026.nsForVoiceRec=0
htc.audio.alt.enable=1
htc.audio.hac.enable=1
ro.setupwizard.enterprise_mode=1
ro.media.codec_priority_thumb=so
dalvik.vm.dexopt-flags=m=y
net.bt.name=Android
dalvik.vm.stack-trace-file=/data/anr/traces.txt
Sent from my Optimus 2X using XDA Premium App
Dude you're the effing bomb!! It worked it really worked. Definitely a thanks. I couldn't get it off the market so i had some searching for the apk. I think I'm really gonna love this game. My!? Is why doesn't gameloft port it over since as you can see it can run on our phones very well.
mrjaydee82 said:
Dude you're the effing bomb!! It worked it really worked. Definitely a thanks. I couldn't get it off the market so i had some searching for the apk. I think I'm really gonna love this game. My!? Is why doesn't gameloft port it over since as you can see it can run on our phones very well.
Click to expand...
Click to collapse
Glad I can help
Sent from my Optimus 2X using XDA Premium App
This game really heats up my phone big time, what is a safe temp you think for evo 3d? After a little playing it got up to 52 degrees celcius
mrjaydee82 said:
This game really heats up my phone big time, what is a safe temp you think for evo 3d? After a little playing it got up to 52 degrees celcius
Click to expand...
Click to collapse
Yeah it do hit extreme temperature mainly because data is constantly being transfer and if you are on a weak connection the harder the radio will have to work thus generating more heat and if u are playing while plug in and using the Evo3D charger which charges at a higher voltage the faster the phone temp will go up,mine goes way above 54c/110'F,but don't worry,the led should start blinking from Green/Orange repeatedly when the phone start to hit unsafe temperature,and when it do start to blink orange/green you might want to unplug the charger and/or you may need to pull the battery out for about about 2-5mins if you are concern about damaging your device by overheating it,but I just reboot and wait few minutes to start playing again cause I have a otter box case and pulling battery out is a pain.
Also try setting resolution for the game to 16bit from ChainFire3D settings it will reduce memory use and help with battery heat because the chips are drawing less power,and you wouldn't even notice the difference in 32bit and 16bit.And u can also mess around with SetCpu or whatever to lower your CPU speed under 1ghz.Or if you are home and on wifi,turn off mobile data/3G u will still be able to get txt and calls dont worry.Those settings seems to keep temps down a little bit.
Sent from my Optimus 2X using XDA Premium App
Okay thanks
Thank you ever so much... I've been waiting on this for a minute...
ourprisonplanet said:
Thank you ever so much... I've been waiting on this for a minute...
Click to expand...
Click to collapse
You are welcome sir
4g for htc evo would look like this?
ro.product.model = Optimus 2X
= ro.product.model.internal
ro.product.brand = LGE
ro.product.name = lge_star
ro.product.device = P990
ro.product.board = P990
BUILD_DISPLAY_ID=4.24.651.1
dalvik.vm.dexopt-flags=m
dalvik.vm.heapsize=48m
dalvik.vm.lockprof.threshold=500
dalvik.vm.stack-trace-file=/data/anr/traces.txt
gsm.operator.alpha=Sprint
gsm.operator.iso-country=us
gsm.operator.numeric=310120
gsm.sim.operator.alpha=Sprint
gsm.sim.operator.iso-country=us
gsm.sim.operator.numeric=310120
htc.audio.alt.enable=1
htc.audio.hac.enable=1
keydispatchtimeout=15000
keyguard.no_require_sim=1
media.a1026.nsForVoiceRec=0
media.stagefright.enable-http=true
media.stagefright.enable-meta=true
media.stagefright.enable-player=true
media.stagefright.enable-scan=true
net.bt.name=Android
persist.service.adb.enable=1
persist.service.mount.playsnd=0
persist.sys.shutdown.mode=hibernate
postprocess.denoise_level=5
postprocess.iso_midband=400
rild.libpath=/system/lib/libhtc_ril.so
ring.delay=0
ro.aa.cidlist=SPCS_001
ro.aa.customizationid=177316
ro.aa.maincid=SPCS_001
ro.aa.mainsku=651
ro.aa.modelid=PC3610000
ro.aa.project=SuperSonic_GB
ro.aa.rid=62
ro.aa.romver=4.24.651.1
ro.aa.skulist=651
ro.aa.taskid=193963
ro.board.platform=qsd8k
ro.bt.chipset=Broadcom BCM4329-B1
ro.bt.profiles=4270339
ro.bt.stack=Broadcom BTL-A
ro.bt.stack.version=2.0.50.032
ro.build.date=一 5月 23 22:29:13 CST 2011
ro.build.date.utc=1306160953
ro.build.description=Ginger-AleV5 ro.build.changelist
ro.build.display.id=GRI40
ro.build.fingerprint=sprint/htc_supersonic/supersonic:2.3.3/GRI40/61076:user/release-keys
ro.build.host=AA135
ro.build.id=GRI40
ro.build.product=supersonic
ro.build.project=198504
ro.build.tags=release-keys
ro.build.type=user
ro.build.user=root
ro.build.version.codename=REL
ro.build.version.incremental=60865
ro.build.version.release=2.3.3
ro.build.version.sdk=10
ro.cdma.home.operator.alpha=Sprint
ro.cdma.home.operator.numeric=310120
ro.com.android.dataroaming=true
ro.com.google.clientidbase=android-sprint-us
ro.com.google.clientidbase.am=android-sprint-us
ro.com.google.clientidbase.gmm=android-sprint-us
ro.com.google.clientidbase.ms=android-sprint-us
ro.com.google.clientidbase.vs=android-sprint-us
ro.com.google.clientidbase.yt=android-sprint-us
ro.com.google.gmsversion=2.3_r2
ro.com.google.locationfeatures=1
ro.com.google.networklocation=1
ro.config.alarm_alert=NewDay.mp3
ro.config.cal_notification=Epsilon.mp3
ro.config.msg_notification=Gamma.mp3
ro.config.notification_sound=Zeta.mp3
ro.config.ringtone=RingRing.mp3
ro.htc.checkin.crashurl=http://andchin.htc.com/android/crash
ro.htc.checkin.url=http://andchin.htc.com/android/checkin
ro.htc.common.version=2.1.0.0
ro.media.cam.preview.fps=0
ro.media.codec_priority_for_thumb=so
ro.media.dec.aud.wma.enabled=1
ro.media.dec.jpeg.memcap=20000000
ro.media.dec.vid.wmv.enabled=1
ro.media.enc.aud.amrnb.bps=5525,12200
ro.media.enc.aud.amrnb.ch=1,1
ro.media.enc.aud.amrnb.hz=8000,8000
ro.media.enc.aud.codec=amrnb
ro.media.enc.file.format=3gp,mp4
ro.media.enc.hprof.aud.bps=12200
ro.media.enc.hprof.aud.ch=1
ro.media.enc.hprof.aud.hz=8000
ro.media.enc.hprof.codec.aud=amrnb
ro.media.enc.hprof.codec.vid=m4v
ro.media.enc.hprof.duration=60
ro.media.enc.hprof.file.format=mp4
ro.media.enc.hprof.vid.bps=2000000
ro.media.enc.hprof.vid.fps=24
ro.media.enc.hprof.vid.height=480
ro.media.enc.hprof.vid.width=720
ro.media.enc.jpeg.quality=95,85,70
ro.media.enc.lprof.aud.bps=12200
ro.media.enc.lprof.aud.ch=1
ro.media.enc.lprof.aud.hz=8000
ro.media.enc.lprof.codec.aud=amrnb
ro.media.enc.lprof.codec.vid=m4v
ro.media.enc.lprof.duration=30
ro.media.enc.lprof.file.format=3gp
ro.media.enc.lprof.vid.bps=256000
ro.media.enc.lprof.vid.fps=15
ro.media.enc.lprof.vid.height=144
ro.media.enc.lprof.vid.width=176
ro.media.enc.vid.codec=m4v,h263,h264
ro.media.enc.vid.h263.bps=64000,6000000
ro.media.enc.vid.h263.fps=1,30
ro.media.enc.vid.h263.height=144,720
ro.media.enc.vid.h263.width=176,1280
ro.media.enc.vid.h264.bps=64000,6000000
ro.media.enc.vid.h264.fps=1,30
ro.media.enc.vid.h264.height=144,480
ro.media.enc.vid.h264.width=176,800
ro.media.enc.vid.m4v.bps=64000,8000000
ro.media.enc.vid.m4v.fps=1,30
ro.media.enc.vid.m4v.height=144,720
ro.media.enc.vid.m4v.width=176,1280
ro.opengles.version=131072
ro.product.bluetooth=2.1 + EDR
ro.product.board=supersonic
ro.product.brand=sprint
ro.product.cpu.abi=armeabi-v7a
ro.product.cpu.abi2=armeabi
ro.product.device=supersonic
ro.product.display_resolution=4.3 inch WVGA resolution
ro.product.front_camera=1.3M
ro.product.locale.language=hdpi
ro.product.locale.region=
ro.product.main_camera=8M
ro.product.manufacturer=HTC
ro.product.model=PC36100
ro.product.name=htc_supersonic
ro.product.processor=1GHz
ro.product.ram=512MB
ro.product.ua=
ro.product.version=AvA-Modified
ro.product.wifi=802.11 b/g/n
ro.ril.def.agps.mode=2
ro.ril.def.preferred.network=4
ro.ril.set.mtu1472=1
ro.setupwizard.enterprise_mode=1
ro.setupwizard.mode=DISABLED
ro.sf.hw=1
ro.sf.lcd_density=240
ro.telephony.call_ring.delay=0
ro.telephony.default_network=4
ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html
ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/privacy.html
ro.wifi.channels=
service.brcm.bt.activation=0
service.brcm.bt.avrcp_pass_thru=0
service.brcm.bt.avrcp_toggle=1
service.brcm.bt.btld_pid=0
service.brcm.bt.hcid_active=0
service.brcm.bt.srv_active=0
service.brcm_bt.btld=0
settings.display.autobacklight=1
settings.display.brightness=143
watchdogtimeout=120000
wifi.interface=etho
wifi.supplicant_scan_interval=30
windowsmgr.max_events_per_sec=100
windowsmgr.support_rotation_270=true
ro.config.ringtone=Windchimer.mp3
Thanks
I would totally put chainfire on my nook color, but your instructions kind of scare me since we cannot remove the battery.. and your advice was right about putting the new market back on, I could buy runes and such afterwards. Unfortunately it can't see the game anymore, but since I could buy it legit I don't mind.
Btw, I am in your guild. Good write up btw.
Edit: No problems with chainfire(must be your phones), and a notable amount of smoothness since I did it. Good idea.
Silentbtdeadly said:
I would totally put chainfire on my nook color, but your instructions kind of scare me since we cannot remove the battery.. and your advice was right about putting the new market back on, I could buy runes and such afterwards. Unfortunately it can't see the game anymore, but since I could buy it legit I don't mind.
Btw, I am in your guild. Good write up btw.
Edit: No problems with chainfire(must be your phones), and a notable amount of smoothness since I did it. Good idea.
Click to expand...
Click to collapse
Did you try the option in ChainFire3D that says Fix Market Settings to see if u can see it again in the new Market?
I'd love to give this a go, but I can't get past step 2. I downloaded the new version from the market, with my modded build.prop, but when I go to run it, and download content, it says, "an error has occurred with the download, would you like to restart it? " or something to that effect, click yes, and the same message comes back up. Over, and over. I've posted on the gameloft forum, but no help over there. Hopefully, someone will have answers or help here. Thanks for reading.
Veedubklown said:
I'd love to give this a go, but I can't get past step 2. I downloaded the new version from the market, with my modded build.prop, but when I go to run it, and download content, it says, "an error has occurred with the download, would you like to restart it? " or something to that effect, click yes, and the same message comes back up. Over, and over. I've posted on the gameloft forum, but no help over there. Hopefully, someone will have answers or help here. Thanks for reading.
Click to expand...
Click to collapse
Try using a different connection or uninstall game reboot then reinstall,if that don't work,you may need to find and download the remaining game cache off the internet which is about 650MB+ and I'm not sure if the game Cache off another device may work on Evo3D,but if u look hard you might find the Optimus 2X or GX2,that's the device our phone is imitating ,You can then place it in the gameloft/games/GloftMMHM folder on your SD card,then reinstall the game from market,that might probably work because the game would only require about 160+MB more to complete.If that doesn't work,refer to method 2 below.
so here is what I want you to try.
step 1:
Uninstall the Order & Chaos you downloaded from Market and download & install the one from the link I PM/sent you cause I can't post it here.
Step 2:
Launch the one you downloaded from my link and see if it will download the remaining game from Gameloft severs.
Step 3:
If you were able to complete the download,leave the game and then uninstall Order & Chaos again then reinstall the one from Market it should just require about 165+MB more to complete this time around because its a newer version of the game.
Let me know how it goes.
will it work with this asus eee pad code?
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=HMJ37
ro.build.display.id=HMJ37.WW_epad-8.4.4.11-20110711
ro.build.version.incremental=WW_epad-8.4.4.11-20110711
ro.build.version.sdk=12
ro.build.version.codename=REL
ro.build.version.release=3.1
ro.build.date=Mon Jul 11 14:47:25 CST 2011
ro.build.date.utc=1310366845
ro.build.type=user
ro.build.user=
ro.build.host=Mercury
ro.build.tags=release-keys
ro.product.model=EPAD
ro.product.brand=asus
ro.product.name=WW_epad
ro.product.device=EeePad
ro.product.board=EeePad
ro.product.cpu.abi=armeabi-v7a
ro.product.cpu.abi2=armeabi
ro.product.manufacturer=asus
ro.product.locale.language=en
ro.product.locale.region=US
ro.wifi.channels=
ro.board.platform=tegra
# ro.build.product is obsolete; use ro.product.device
ro.build.product=EeePad
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=WW_epad-user 3.1 HMJ37 WW_epad-8.4.4.11-20110711 release-keys
ro.build.fingerprint=asus/WW_epad/EeePad:3.1/HMJ37/WW_epad-8.4.4.11-20110711:user/release-keys
ro.build.characteristics=tablet,nosdcard
# end build properties
ro.opengles.version = 131072
wifi.interface=wlan0
rild.libpath=/system/lib/libmbm-ril.so
rild.libargs=-d /dev/ttyACM0 -i wwan0
#
# ADDITIONAL_BUILD_PROPERTIES
#
ro.config.notification_sound=OnTheHunt.ogg
ro.config.alarm_alert=Alarm_Classic.ogg
dalvik.vm.heapstartsize=5m
dalvik.vm.heapgrowthlimit=48m
dalvik.vm.heapsize=256m
wifi.version.driver=V5.1.50
bt.version.driver=V6.17
gps.version.driver=V1.3.2
keyguard.no_require_sim=true
drm.service.enabled=1
ro.setupwizard.mode=DISABLED
ro.com.google.gmsversion=3.1_pre-r1
gsm.bodysargsm=32,26,29,29
ro.com.google.clientidbase=android-asus
ro.wifi.country=US
dalvik.vm.dexopt-flags=m=y
net.bt.name=Android
dalvik.vm.stack-trace-file=/data/anr/traces.txt
farr3ll said:
will it work with this asus eee pad code?
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=HMJ37
ro.build.display.id=HMJ37.WW_epad-8.4.4.11-20110711
ro.build.version.incremental=WW_epad-8.4.4.11-20110711
ro.build.version.sdk=12
ro.build.version.codename=REL
ro.build.version.release=3.1
ro.build.date=Mon Jul 11 14:47:25 CST 2011
ro.build.date.utc=1310366845
ro.build.type=user
ro.build.user=
ro.build.host=Mercury
ro.build.tags=release-keys
ro.product.model=EPAD
ro.product.brand=asus
ro.product.name=WW_epad
ro.product.device=EeePad
ro.product.board=EeePad
ro.product.cpu.abi=armeabi-v7a
ro.product.cpu.abi2=armeabi
ro.product.manufacturer=asus
ro.product.locale.language=en
ro.product.locale.region=US
ro.wifi.channels=
ro.board.platform=tegra
# ro.build.product is obsolete; use ro.product.device
ro.build.product=EeePad
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=WW_epad-user 3.1 HMJ37 WW_epad-8.4.4.11-20110711 release-keys
ro.build.fingerprint=asus/WW_epad/EeePad:3.1/HMJ37/WW_epad-8.4.4.11-20110711:user/release-keys
ro.build.characteristics=tablet,nosdcard
# end build properties
ro.opengles.version = 131072
wifi.interface=wlan0
rild.libpath=/system/lib/libmbm-ril.so
rild.libargs=-d /dev/ttyACM0 -i wwan0
#
# ADDITIONAL_BUILD_PROPERTIES
#
ro.config.notification_sound=OnTheHunt.ogg
ro.config.alarm_alert=Alarm_Classic.ogg
dalvik.vm.heapstartsize=5m
dalvik.vm.heapgrowthlimit=48m
dalvik.vm.heapsize=256m
wifi.version.driver=V5.1.50
bt.version.driver=V6.17
gps.version.driver=V1.3.2
keyguard.no_require_sim=true
drm.service.enabled=1
ro.setupwizard.mode=DISABLED
ro.com.google.gmsversion=3.1_pre-r1
gsm.bodysargsm=32,26,29,29
ro.com.google.clientidbase=android-asus
ro.wifi.country=US
dalvik.vm.dexopt-flags=m=y
net.bt.name=Android
dalvik.vm.stack-trace-file=/data/anr/traces.txt
Click to expand...
Click to collapse
If you your Tab is rooted with R/W and you are able to edit the corresponding Build.Prop settings in first post,then yes it might work,because our phone is able to imitate Tabs too & vice versa.But keep in mind you will be installing a phone version of the game and it might not look full screen on you pad,I'm not sure.
still reads as incompatible at market
Lord_Kaizer said:
If you your Tab is rooted with R/W and you are able to edit the corresponding Build.Prop settings in first post,then yes it might work,because our phone is able to imitate Tabs too & vice versa.But keep in mind you will be installing a phone version of the game and it might not look full screen on you pad,I'm not sure.
Click to expand...
Click to collapse
Unless you have found anything different, there doesn't appear to be a "phone" version and tablet version, nothing I have found suggests the way the game renders, the sd card contents, or changing the build.prop has changed those things. Since I am using a pad, I would like to be able to test this, but when I put the galaxy tab settings in my build.prop nothing was any different than before.
I am very curious though.
farr3ll said:
still reads as incompatible at market
Click to expand...
Click to collapse
Did you reboot after changing your build.prop? The changes won't take effect until you do, and this method is verified as working.
I have a totally different device, but the method that worked for me to be ABLE to see/download it in the market, I had to be using the OLD style market(the newer one is more device aware).. then to be able to buy game time in game I had to install the new market(grey/black style).
farr3ll said:
still reads as incompatible at market
Click to expand...
Click to collapse
At which point do it say incompatible,anwser the following questions
1: Are you using a custom rom?
I'm using stock
2: Did you have the patch/hack version installed before this?
if u did,u may have to delete the old cache folder GloftMMHM from the gameloft folder on your SD and start fresh
3: were u able to see the game in market
and download & install,but then got incompatible when u launch the game?
if that happen,did you install the NVIDIA driver and check hide CF3D options.
2: Did the game load up normal after installing or did the incompatible message pop up?
If so,please check the build.prop changes and comepare it line by line to mine in the second post.And check the steps again please.
yeah, it should work for any device. thank you so much kaizer. it worked for me on evo3d. now i can play.

[REF]Droid X2 MOTOBLUR build.prop (Updated 8/26/2011)

Droid X2 custom build.prop
I've been cruising with some of these edits for quite awhile, and I recently modified them for the Droid X2. Some may find this beneficial, as it is, in my opinion, better than what comes stock. I realize this is pretty basic, but some people don't know what the settings mean. This way they can just drop it in without thinking about it.
Keep in mind, this build ID's, market fingerprint, Blur version will need to be updated with every ROM release version (e.g. 2.3.4).
You may need to double reboot after flashing the ZIP to resume data service.
Now includes permanent rooted ADB thanks to drjbliss. Now you no longer have to send files to your sdcard before su'ing into root via ADB. You can push and pull files directly to /system (or other partition) now
BSR flashable zip:
Download: http://www.multiupload.com/W11VLBH7QV
Mirror: http://www.mediafire.com/?h42cf5ci777b97u
Non-BSR flashable zip - file ONLY:
Download: http://www.multiupload.com/M4FT064X18
Mirror: http://www.mediafire.com/?q8sqe7t9sr1l12l
# ----------------------------------------
# MOTOROLA Droid X2 BLUR Build Prop
# w/ optimizations by navenedrob
# ----------------------------------------
# DO NOT DELETE THIS FILE
# This file contains specific information
# that is needed by the kernel and OS.
# ----------------------------------------
# BEGIN ENV/DEVICE OPTIMIZATIONS
# ----------------------------------------
# Set generic build ID's for OS
ro.build.id=4.5.1A-DTN-117-15
ro.build.display.id=4.5.1A-DTN-117-15
ro.build.version.full=Blur_Version.1.3.232.MB870.Verizon.en.US
# Set SDK version
ro.build.version.sdk=10
ro.build.version.codename=REL
ro.build.version.release=2.3.3
# Hardware specific
ro.product.model=DROID X2
ro.product.brand=verizon
ro.product.name=daytona
ro.product.device=daytona
ro.product.board=daytona
ro.product.cpu.abi=armeabi-v7a
ro.product.cpu.abi2=armeabi
ro.product.manufacturer=motorola
ro.product.locale.language=en
ro.product.locale.region=US
ro.board.platform=tegra
# Set market
ro.build.description=daytona-user 2.3.3 4.5.1A-DTN-117-15 110615 release-keys
ro.build.fingerprint=verizon/daytona/daytona:2.3.3/4.5.1A-DTN-117-15/110615:user/release-keys
# Set RILD path
rild.libpath=/system/lib/libmoto_ril.so
# Set CDMA/radio specific properties
persist.ril.uart.flowctrl=1
persist.ril.mux.ttydevice=/dev/ttyHS3
persist.ril.mux.noofchannels=8
persist.ril.modem.ttydevice=/dev/ttySPI0
persist.ril.modem.mode=1
persist.ril.features=0x0C
persist.ril.ecclist=911,*911,#911
persist.ril.mux.retries=500
persist.ril.mux.sleep=2
persist.radio.cdma.min=0
ro.cdma.homesystem=64,65,76,77,78,79,80,81,82,83
ro.cdma.home.operator.numeric=310004
ro.cdma.home.operator.alpha=Verizon
ro.cdma.otaspnumschema=SELC,1,80,99
ro.cdma.nbpcd=1
ro.cdma.data_retry_config=default_randomization=2000,0,0,120000,180000,540000,960000
ro.cdma.sms.latin_encode=true
ro.telephony.default_network=4
ro.kernel.android.ril=yes
cdma.nbpcd.supported=false
# Motorola MMS settings
mot.mms.conn.timeout=30000
mot.mms.socket.timeout=120000
mot.mms.tr.vc.timeout=55000
mot.mms.trm.timeout=240000
mot.mms.abort.prog.lim=90
mot.mms.retry.pic.size=512000
mot.mms.retry.default=false
mot.mms.retry.timeout.1=30000
mot.mms.retry.timeout.2=180000
mot.mms.retry.timeout.3=300000
mot.mms.retry.timeout.4=480000
# Client ID's
ro.com.google.clientid=android-motorola
ro.com.google.clientidbase=android-motorola
ro.com.google.clientidbase.ms=android-verizon
ro.com.google.clientidbase.am=android-verizon
ro.com.google.clientidbase.gmm=android-motorola
ro.com.google.clientidbase.yt=android-verizon
# GMS version
ro.com.google.gmsversion=2.3_r3
# Set BLAN interface
ro.blan.interface=usb0
# WiFi scan interval (decrease for more scans, 120 = 2 minutes)
wifi.supplicant_scan_interval=120
# Dalvik VM performance options
dalvik.vm.startheapsize=8m
dalvik.vm.heapsize=48m
dalvik.vm.execution-mode=int:jit
dalvik.vm.stack-trace-file=/data/anr/traces.txt
dalvik.vm.dexopt-flags=m=y
dalvik.vm.jniopts=warnonly
dalvik.vm.lockprof.threshold=500
dalvik.vm.checkjni=false
persist.sys.purgeable_assets=1
# Gingerbread performance options
debug.sf.hw=1
debug.performance.tuning=1
video.accelerate.hw=1
# USB modes allowed for UI and switching
ro.ngp_available=1
ro.modem_available=1
# Disable persistent media sync
persist.mot.usb.mediasync=0
# Default USB mode
ro.default_usb_mode=0
# Enable HDMI mirror
ro.hdmi.mirror.enable=true
# Enable tethering
ro.tether.denied=false
# Decrease call ring delay for faster answer
ro.telephony.call_ring.delay=1000
# Increase amount of call volume steps
ro.config.vc_call_vol_steps=12
# Enable multitouch and max touch count
ro.product.multi_touch_enabled=true
ro.product.max_num_touch=2
# Set LCD density (grow or shrink UI size)
ro.sf.lcd_density=240
# Change scroll smoothness/speed
windowsmgr.max_events_per_sec=150
# Enable 270 degree rotation
windowsmgr.support_rotation_270=true
# Proximity sensor options
mot.proximity.distance=60
mot.proximity.delay=150
persist.mot.proximity.touch=1
# Pointer event delay
ro.min_pointer_dur=10
# Keyguard properties
keyinputqueue.use_finger_id=true
keyguard.no_require_sim=1
# Motorola settings
ro.mot.ril.danlist=611,*611,#611
ro.mot.deep.sleep.supported=true
ro.mot.hw.calibratedImager=1
ro.mot.eri.losalert.delay=1000
ro.mot.buttonlight.timeout=1
ro.mot.hw.HAC=1
ro.mot.eri=1
ro.mot.bindervm.config=158
ro.mot.setuptype=2
ro.mot.internalsdcard=1
ro.mot.dpmext=true
ro.mot.mynet=false
ro.mot.hidden_keyboards=evfwd
ro.mot.hw.uaprof=http://uaprof.motorola.com/phoneconfig/MotoMB200/profile/MotoMB200.rdf
# Enable/disable stagefright (camera, camcorder, etc)
media.stagefright.enable-player=true
media.stagefright.enable-meta=true
media.stagefright.enable-scan=true
media.stagefright.enable-http=true
# Media encode/camera values
ro.media.enc.aud.fileformat=qcp
ro.media.enc.aud.codec=qcelp
ro.media.enc.aud.bps=13300
ro.media.enc.aud.ch=1
ro.media.enc.aud.hz=8000
ro.media.camcorder.720p=mp4,h264,30,12000000,aac,128000,44100,2
ro.media.camcorder.d1NTSC=mp4,h264,30,6000000,aac,128000,44100,2
ro.media.camcorder.vga=mp4,h264,30,4000000,aac,128000,44100,2
ro.media.camcorder.cif=mp4,h264,30,1500000,aac,128000,44100,2
ro.media.camcorder.qvga=mp4,h264,15,500000,aac,32000,16000,2
ro.media.camcorder.mms=3gp,h264,15,128000,amrnb,12200,8000,1
ro.media.camcorder.mmsres=qvga
ro.media.camera.focal=3378.6,3378.6
ro.media.camera.principal=1632.0,1224.0
ro.media.camera.skew=0.0
ro.media.camera.distortion=0.0,0.0,0.0,0.0,0.0
ro.media.camera.calresolution=3264,2448
ro.media.capture.shuttertone=1
ro.camcorder.zoom=true
ro.camcorder.videoModes=false
# Set date format to American date format
ro.com.android.dateformat=MM-dd-yyyy
# Disable data roaming to kill overages
ro.com.android.dataroaming=false
# Android Setup Wizard options
ro.setupwizard.enable_bypass=1
ro.setupwizard.enterprise_mode=1
# ENABLED, OPTIONAL, DISABLED
ro.setupwizard.mode=DISABLED
# Set legal options
ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html
ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/privacy.html
# Set Android default BT name
net.bt.name=Android
# Attempt to keep ADB root
ro.sys.atvc_allow_netmon_usb=0
ro.sys.atvc_allow_netmon_ih=0
ro.sys.atvc_allow_res_core=0
ro.sys.atvc_allow_res_panic=0
ro.sys.atvc_allow_all_adb=1
ro.sys.atvc_allow_all_core=0
ro.sys.atvc_allow_efem=0
ro.sys.atvc_allow_bp_log=0
ro.sys.atvc_allow_ap_mot_log=0
ro.sys.atvc_allow_gki_log=0
# Attempt to make ADB constant
persist.service.adb.enable=1
# ----------------------------------------
# BEGIN OS OPTIMIZATIONS
# ----------------------------------------
# Tweak APP_ADJ parameters
ro.FOREGROUND_APP_ADJ=0
ro.VISIBLE_APP_ADJ=1
ro.PERCEPTIBLE_APP_ADJ=1
ro.HEAVY_WEIGHT_APP_ADJ=2
ro.SECONDARY_SERVER_ADJ=2
ro.BACKUP_APP_ADJ=2
ro.HOME_APP_ADJ=0
ro.HIDDEN_APP_MIN_ADJ=7
ro.CONTENT_PROVIDER_ADJ=14
ro.EMPTY_APP_ADJ=15
# Tweak APP_MEM parameters
ro.FOREGROUND_APP_MEM=2560
ro.VISIBLE_APP_MEM=4096
ro.PERCEPTIBLE_APP_MEM=4096
ro.HEAVY_WEIGHT_APP_MEM=4096
ro.SECONDARY_SERVER_MEM=6144
ro.BACKUP_APP_MEM=6144
ro.HOME_APP_MEM=6144
ro.HIDDEN_APP_MEM=10240
ro.CONTENT_PROVIDER_MEM=11264
ro.EMPTY_APP_MEM=12288
# Tweak net speed
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.edge=4093,26280,35040,4096,16384,35040
# Tweak 3g speed
ro.ril.hsxpa=2
ro.ril.gprsclass=32
ro.ril.hep=1
ro.ril.hsdpa.category=28
ro.ril.enable.3g.prefix=1
ro.ril.htcmaskw1.bitmask=4294967295
ro.ril.htcmaskw1=268449905
ro.ril.hsupa.category=9
ro.ril.def.agps.mode=2
ro.ril.def.agps.feature=1
ro.ril.enable.sdr=1
ro.ril.enable.gea3=1
ro.ril.enable.fd.plmn.prefix=23402,23410,23411
ro.ril.disable.power.collapse=0
ro.ril.enable.a52=0
ro.ril.enable.a53=1
ro.ril.enable.dtm=1
Click to expand...
Click to collapse
Happy to see this!
...but it says "Invalid Attachment specified. If you followed a valid link, please notify the administrator" when clicking the attached file.
donlad said:
Happy to see this!
...but it says "Invalid Attachment specified. If you followed a valid link, please notify the administrator" when clicking the attached file.
Click to expand...
Click to collapse
Might need to refresh the page. I will make some mirrors.
Refreshing did the trick.
Can we just replace the build.prop that we have and reboot and voila?
donlad said:
Refreshing did the trick.
Can we just replace the build.prop that we have and reboot and voila?
Click to expand...
Click to collapse
Yes, you can
adb push build.prop /sdcard-ext/
adb shell
adb su
mount -o remount,rw /dev/block/mmcblk0p12 /system
cp /sdcard-ext/build.prop /system
chmod 644 /system/build.prop
chown 0.0 /system/build.prop
reboot
Click to expand...
Click to collapse
I'll make a BSR flashable zip... that would be easier eh
navenedrob said:
I'll make a BSR flashable zip... that would be easier eh
Click to expand...
Click to collapse
Yes please!
navenedrob said:
Yes, you can
I'll make a BSR flashable zip... that would be easier eh
Click to expand...
Click to collapse
Yes that would be easy. But could I extract the buildprop and just put it in system and set the other one to building.prop.bak? Possible? I would have to download right to my phone.
donlad said:
Yes please!
Click to expand...
Click to collapse
Ok, updated, try it out, let me know if you have success.
ashclepdia said:
Yes that would be easy. But could I extract the buildprop and just put it in system and set the other one to building.prop.bak? Possible? I would have to download right to my phone.
Click to expand...
Click to collapse
Sure, this is also another possible option.
navenedrob said:
Sure, this is also another possible option.
Click to expand...
Click to collapse
Freaking a I will be trying this tomorrow ..man I have a lot of options for tomorrow.
Now if I do this and then want to tweak something using v6 will I be okay or will there be a problem. I can't see there being a major problem..and I could also just change some values in the build.prop if I want to tweak also correct? This is pretty cool. Can't wait till tomorrow. Sucks I have to work or else I would be tweaking all day.
O yeah and I LOVE how you put in the descriptive lines. Nice touch
And b4 I forget ...the tweak network speeds. What type of results should I be expecting with these values? What is it going to be a major difference when I use speedtest?
navenedrob said:
Ok, updated, try it out, let me know if you have success.
Click to expand...
Click to collapse
Just flashed and it's booted. I have no service. No voice/data signal whatsoever.
EDIT: I rebooted again and signal has resumed.
navenedrob said:
Sure, this is also another possible option.
Click to expand...
Click to collapse
I download the file only version for just pushing into system directly from phone using root explorer? Sry just want to download the right one.
ashclepdia said:
I download the file only version for just pushing into system directly from phone using root explorer? Sry just want to download the right one.
Click to expand...
Click to collapse
That should work. Just make sure the permissions are set right.
navenedrob said:
That should work. Just make sure the permissions are set right.
Click to expand...
Click to collapse
Just to be certain I would be putting the right permission on it I just use the same settings as the permissions for my original build.prop?
They are bottom two in first column. Middle box in middle column. And bottom two in right column?
In the prop it has multi touch up to 4 points, but phone tester still only recognizes 2
Sent from my DROID X2
Thanks man. This has GREATLY improved my 3g speeds & I was running the 3g turbo script before. With this implemented, is there any benefit from running the v6 supercharger? I have both installed, along with all of the latest init.d tweaks & get no lag or redraw now. Gonna test music/video later.
Sent from my DROID X2 using XDA Premium App
garywojdan81 said:
Thanks man. This has GREATLY improved my 3g speeds & I was running the 3g turbo script before. With this implemented, is there any benefit from running the v6 supercharger? I have both installed, along with all of the latest init.d tweaks & get no lag or redraw now. Gonna test music/video later.
Sent from my DROID X2 using XDA Premium App
Click to expand...
Click to collapse
You are scaring me with all those scripts running that try to tweak the same thing at the same tine. Be careful one wrong button and you might end up having to sbf. Good luck hope it works out for ya
ashclepdia said:
You are scaring me with all those scripts running that try to tweak the same thing at the same tine. Be careful one wrong button and you might end up having to sbf. Good luck hope it works out for ya
Click to expand...
Click to collapse
Yeah I know. Getting ready to drop all the v6 stuff now. I'd rather run leaner & cleaner with something set specifically for this phone.
Update: Ok I dropped the v6 stuff after undoing the supercharge in script manager. The 3g tweaks disappeared when the build.prop was overwritten by navenedrob's file so all I'm running now are his tweaks in init.d & everything seems just as snappy. My major issue is with launcher redraws coming out pf sleep or exiting the phone.apk after ending a call. Gonna try this for awhile, so far so good though.
Sent from my DROID X2 using XDA Premium App
Ok I flashed the MOTOBLUR zip and the first time I rebooted all my services were fine does that mean its working? It feels just a tad bit faster but not sure if its actually working?
Sent from my DROID X2 using XDA App
almania6 said:
Ok I flashed the MOTOBLUR zip and the first time I rebooted all my services were fine does that mean its working? It feels just a tad bit faster but not sure if its actually working?
Sent from my DROID X2 using XDA App
Click to expand...
Click to collapse
Best way to check is to open up the build.prop from /system and see if it matches the one here. If it is there and the same then it worked

[OTA][TMO][XT1053]161.44.25.ghost_row.Retail.en.US

Here's the XT1053 T-Mobile US/Unlocked/GSM Developer Edition Android 4.4.2 OTA package for anyone that needs/wants it. This updates you from system version 140.44.3.ghost_row.Retail.en.US (Android 4.4) to system version 161.44.25.ghost_row.Retail.en.US (Android 4.4.2).
Download (Mega)
Mirror (Thanks to cajunflavoredbob)
MD5: e3f387d1484f688fb5e89e917bbe75a9
Manual install instructions for unrooted stock users here.
For rooted stock users with unlocked bootloaders, read this first and make sure you really are back to stock. You need to have a completely stock system and kernel 140.44.3.ghost_row.Retail.en.US to proceed. No Xposed modules, modified build.prop, etc.
This update does not install with TWRP or at least Hashcode's build since his recovery reports it as a XT1060 and the update is looking for "ghost" so there's that. If you tried installing from the system notification and got yourself in a recovery bootloop, then wipe cache before rebooting.
The OTA just patches existing files and you should not lose root. Tested with Superuser 1.0.2.9 and SuperSU 1.89. In practice, you should be able to flash the stock recovery (zip attached to this post) from system with Recovery Tools, OTA, then flash TWRP back again with Recovery Tools when done.
If you rooted with SlapMyMoto and have a locked bootloader, up to you if you want to take this update. This turns write protection back on and you will be pretty much stuck if anything goes wrong.
You should be able to disable the OTA notification until you make up your mind of course of action. One of the 3c apps, not 100% which one, but try disabling 3c_ota.apk first. In adb shell it would be pm disable com.motorola.ccc.ota or use an app to freeze it. If you still get a notification also look at 3c_notification.apk (com.motorola.ccc.notification). If someone would be so kind as to confirm this, I will update the OP.
K
Code:
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=KXA20.16-1.25
ro.build.display.id=KXA20.16-1.25
ro.build.version.incremental=31
ro.build.version.sdk=19
ro.build.version.codename=REL
ro.build.version.release=4.4.2
ro.build.date=Fri Jan 10 22:11:02 CST 2014
ro.build.date.utc=1389413462
ro.build.type=user
ro.build.user=hudsoncm
ro.build.host=ilclbld34
ro.build.tags=release-keys
ro.product.model=XT1053
ro.product.brand=motorola
ro.product.name=ghost_retail
ro.product.device=ghost
ro.product.board=MSM8960
ro.product.cpu.abi=armeabi-v7a
ro.product.cpu.abi2=armeabi
ro.product.manufacturer=motorola
ro.product.locale.language=en
ro.product.locale.region=US
ro.wifi.channels=
ro.board.platform=msm8960
# ro.build.product is obsolete; use ro.product.device
ro.build.product=ghost
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=ghost_retail-user 4.4.2 KXA20.16-1.25 31 release-keys
ro.build.fingerprint=motorola/ghost_retail/ghost:4.4.2/KXA20.16-1.25/31:user/release-keys
ro.build.characteristics=nosdcard
# end build properties
#
# from device/moto/ghost/system.prop
#
#
# system.prop for Motorola MSM8960 devices - generic to all
# Add device-specific or carrier-specific changes to PRODUCT_PROPERTY_OVERRIDES.
#
rild.libpath=/system/lib/libril-qc-qmi-1.so
rild.libargs=-d /dev/smd0
persist.rild.nitz_plmn=
persist.rild.nitz_long_ons_0=
persist.rild.nitz_long_ons_1=
persist.rild.nitz_long_ons_2=
persist.rild.nitz_long_ons_3=
persist.rild.nitz_short_ons_0=
persist.rild.nitz_short_ons_1=
persist.rild.nitz_short_ons_2=
persist.rild.nitz_short_ons_3=
ril.subscription.types=NV,RUIM
DEVICE_PROVISIONED=1
debug.sf.hw=1
debug.egl.hw=1
debug.composition.type=gpu
debug.enable.wl_log=1
persist.hwc.mdpcomp.enable=true
debug.mdpcomp.logs=0
debug.sf.no_hw_vsync=0
debug.enabletr=0
hw.trueMirrorSupported=1
telephony.lteOnCdmaDevice=1
#
# system props for the cne module
#
persist.cne.feature=0
# persist.cne.bat.range.low.med=30
# persist.cne.bat.range.med.high=60
# persist.cne.loc.policy.op=/system/etc/OperatorPolicy.xml
# persist.cne.loc.policy.user=/system/etc/UserPolicy.xml
# persist.cne.bwbased.rat.sel=false
# persist.cne.snsr.based.rat.mgt=false
# persist.cne.bat.based.rat.mgt=false
# persist.cne.rat.acq.time.out=30000
# persist.cne.rat.acq.retry.tout=0
lpa.decode=false
lpa.use-stagefright=true
# IKJBMR2X-72 not default to QC HW AAC encoder
#qcom.hw.aac.encoder=true
#system props for the MM modules
media.stagefright.enable-player=true
media.stagefright.enable-http=true
media.stagefright.enable-aac=true
media.stagefright.enable-qcp=true
media.stagefright.enable-fma2dp=true
media.stagefright.enable-scan=true
mmp.enable.3g2=true
media.aac_51_output_enabled=true
#33395 is sum of supported format flags in AAL
#Formats: AVI AC3 ASF AAC QCP DTS 3G2
mm.enable.qcom_parser=33395
#
# system props for the data modules
#
ro.use_data_netmgrd=true
#system props for time-services
persist.timed.enable=true
# System props for audio
persist.audio.fluence.mode=endfire
persist.audio.vr.enable=false
persist.audio.handset.mic=digital
persist.audio.lowlatency.rec=false
ro.config.vc_call_vol_steps=7
# System prop to select audio resampler quality
af.resampler.quality=255
# System prop to select MPQAudioPlayer by default on mpq8064
mpq.audio.decode=true
#
# system prop for opengles version
#
# 196608 is decimal for 0x30000 to report version 3
ro.opengles.version=196608
# system prop for requesting Master role in incoming Bluetooth connection.
#
ro.bluetooth.request.master=true
#
# system prop for Bluetooth Auto connect for remote initated connections
#
ro.bluetooth.remote.autoconnect=true
# system property for Bluetooth discoverability time out in seconds
# 0: Always discoverable
#debug.bt.discoverable_time=0
#system prop for switching gps driver to qmi
persist.gps.qmienabled=true
#
# System prop for sending transmit power request to RIL during WiFi hotspot on/off
#
ro.ril.transmitpower=true
#
# Simulate sdcard on /data/media
#
persist.fuse_sdcard=true
ro.crypto.fuse_sdcard=true
ro.hwui.text_cache_width=2048
#
# Supports warmboot capabilities
#
ro.warmboot.capability=1
#
#snapdragon value add features
#
ro.qc.sdk.audio.ssr=false
##fluencetype can be "fluence" or "fluencepro" or "none"
ro.qc.sdk.audio.fluencetype=none
ro.qc.sdk.camera.facialproc=true
ro.qc.sdk.gestures.camera=false
ro.qc.sdk.sensors.gestures=false
#
# system property for Bluetooth hci transport
#
ro.qualcomm.bt.hci_transport=smd
#
# system property for Bluetooth HFP version
#
ro.bluetooth.hfp.ver=1.6
#
# system property for Bluetooth SAP support
# Motorola disabled SAP
#
ro.qualcomm.bluetooth.sap=false
# Bluetooth LE power class
qcom.bt.le_dev_pwr_class=1
#
# Gps Smart Battery Savings (depends on sensor hub)
#
persist.mot.gps.smart_battery=1
#property to check if dynamic resolution change is supported in framework
ro.streaming.video.drs=true
#property to choose between virtual/external wfd display
persist.sys.wfd.virtual=0
#
# System prop for clientid per GMS Integration Instructions
#
ro.com.google.clientid=android-motorola
#
# System prop for legal URLs as per GMS integration Instructions
#
ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html
ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/privacy.html
#
# Radio RIL properties applicable to all 8960 products
#
persist.radio.no_wait_for_card=1
persist.radio.call_type=1
persist.radio.apm_sim_not_pwdn=1
persist.radio.dfr_mode_set=1
#
# Telephony FW properties
#
persist.radio.eons.enabled=1
# directory assistance number
ro.mot.ril.danlist=611,*611,#611
# For TCMD debug level
persist.tcmd.log.limit = 0
#system prop for setting rmnet mux mode
persist.rmnet.mux=disabled
# IKJBXLINE-6927
ro.mot.proximity.delay=300
#
# ADDITIONAL_BUILD_PROPERTIES
#
ro.build.version.full=Blur_Version.161.44.25.ghost_row.Retail.en.US
ro.mot.build.customerid=Retail
ro.mot.build.version.sdk_int=19
ro.product.display=Moto X
ro.setupwizard.mode=OPTIONAL
ro.com.google.gmsversion=4.4.2_r1
ro.mot.hw.uaprof=http://uaprof.motorola.com/phoneconfig/motomb886/Profile/motomb886.rdf
ro.telephony.default_network=9
net.early.sockets=0
telephony.lteOnCdmaDevice=0
ro.com.google.clientidbase=android-motorola
ro.com.google.clientidbase.ms=android-motorola
ro.com.google.clientidbase.am=android-motorola
ro.com.google.clientidbase.gmm=android-motorola
ro.com.google.clientidbase.yt=android-motorola
ro.config.ringtone=Moto.ogg
ro.config.notification_sound=Moto.ogg
ro.config.alarm_alert=Cesium.ogg
ro.bug2go.magickeys=
persist.log.aplogd.config=--collect=mrsek,--format=threadtime,--size=50,--seq,--ext,--backup=3
persist.sys.qc.sub.rstrtlvl=3
persist.sys.qc.sub.rdump.max=3
ro.vendor.extension_library=/system/lib/libqc-opt.so
ro.usb.mtp=0x2e62
ro.usb.mtp_adb=0x2e63
ro.usb.ptp=0x2e64
ro.usb.ptp_adb=0x2e65
ro.usb.bpt=0x2e28
ro.usb.bpt_adb=0x2e29
ro.usb.bpteth=0x2e2a
ro.usb.bpteth_adb=0x2e2b
ro.mot.ds.fastdormancy.disable=true
ro.mot.ds.fastdormancy.incall=false
ro.adb.secure=1
ro.MAX_HIDDEN_APPS=42
dalvik.vm.heapstartsize=8m
dalvik.vm.heapgrowthlimit=96m
dalvik.vm.heapsize=256m
dalvik.vm.heaptargetutilization=0.75
dalvik.vm.heapminfree=2m
dalvik.vm.heapmaxfree=8m
persist.mot.nfc.ce=2
ro.sf.lcd_density=320
ro.modem.no_wdog_chk=1
ro.mot.vr_source_dsp=1
keyguard.no_require_sim=true
ro.zygote.capsuid=0
mdc_initial_max_retry=10
persist.radio.apn_delay=5000
drm.service.enabled=true
ro.carrier=unknown
ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html
ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/privacy.html
ro.partial.display=true
ro.media.enc.aud.fileformat=amr
ro.media.enc.aud.codec=amrnb
persist.sys.dalvik.vm.lib=libdvm.so
net.bt.name=Android
dalvik.vm.stack-trace-file=/data/anr/traces.txt
ro.qc.sdk.izat.premium_enabled=0
ro.qc.sdk.izat.service_mask=0x4
persist.gps.qc_nlp_in_use=0
ro.gps.agps_provider=1
nice job Kev
kpetrie77 said:
Here's the T-Mobile/Unlocked/Developer Edition Android 4.4.2 OTA package for anyone that needs/wants it.
https://mega.co.nz/#!mwR2QC7C!s1GukqBXnBU1tUBKajDdzWXYGOFbjL80t-uX_Ds8a8k
Manual install instructions for unrooted stock users here.
K
Click to expand...
Click to collapse
THank you so much man!
munchy_cool said:
nice job Kev
Click to expand...
Click to collapse
Anyone got a checksum? Not keen on flashing a file without one
Can this be flashed by twrp? Or is it required to unroot prior to installing this? Thanks!
Sent from my XT1053 using Tapatalk 2
Should be able to. I fastbooted stock recovery but kept root through the update.
MD5 and build.prop added to the OP.
Sent from my fastboot oem unlock XT1053
I have an xt1053 in mexico can i do it with twrp? Or i need to do it with rsd?
Enviado desde mi XT1053 mediante Tapatalk
mazubo said:
Can this be flashed by twrp? Or is it required to unroot prior to installing this? Thanks!
Click to expand...
Click to collapse
gskelter said:
I have an xt1053 in mexico can i do it with twrp? Or i need to do it with rsd?
Click to expand...
Click to collapse
One of you will need to try TWRP. If it doesn't work, it will fail right from the start. Report back with TWRP version as well please.
Edit: Flashing with TWRP may bootloop back into TWRP. OP updated.
Ok i will try twrp but do not have a computer at this moment i hope everythig works fine heheh
Enviado desde mi XT1053 mediante Tapatalk
FYI, those with LOCKED bootloader with SlapmyMoto and Root will be fine if you take the update with the instructions above. Just finished it an hour ago, and phone is functioning appropriately.
Kenichi
Wierd... I get no data with this... which doesn't make sense as I have T-Mobile Moto X. Anyone have a solution? Tried reflashing... was hoping to use the new radios.
Jayrod1980 said:
Wierd... I get no data with this... which doesn't make sense as I have T-Mobile Moto X. Anyone have a solution? Tried reflashing... was hoping to use the new radios.
Click to expand...
Click to collapse
Odd. I assume you didn't change your APNs of any sort. You sure you didn't disable your data syncing or have a software data cap on yourself?
mazubo said:
Can this be flashed by twrp? Or is it required to unroot prior to installing this? Thanks!
Sent from my XT1053 using Tapatalk 2
Click to expand...
Click to collapse
NO this can only be flashed via stock recovery and will only work on a fully stock system and boot. REMEMBER, that if your bootloader is locked you will not be able to downgrade from this build, trying to do so may result in your device becoming a paper weight.
Kenichi said:
Odd. I assume you didn't change your APNs of any sort. You sure you didn't disable your data syncing or have a software data cap on yourself?
Click to expand...
Click to collapse
I'm a complete moron. I didn't pay attention and flashed the whole GB build. This was just a recovery update flash, not a full firmware. I had to reflash the TMO retail 4.4 build minus the gpt.bin and motoboot.img. Thank God the patch works with a 4.4.2 GB bootloader (though lower build than the North America bootloader). Hopefully this fixes some things!
jimmydafish said:
NO this can only be flashed via stock recovery and will only work on a fully stock system and boot. REMEMBER, that if your bootloader is locked you will not be able to downgrade from this build, trying to do so may result in your device becoming a paper weight.
Click to expand...
Click to collapse
It applies also to unlocked bootloader as well,this is a one way upgrade if you upgrade to this boot loader 30.B4, you can not downgrade, trust me and be warned, its been confirmed
Please only flash the system modem files a boot.img files
Sent on my Gummy running Lenoto X
Anyone else seeing an Adam.apk on their X? Don't recall seeing it before applying this update and searching for it doesn't turn anything up.
I would delete Adam.apk
Sent from my XT1053 using Tapatalk
---------- Post added at 09:58 AM ---------- Previous post was at 09:58 AM ----------
https://plus.google.com/105958707362743598012/posts/6dNzjDeNHMt
Sent from my XT1053 using Tapatalk
papi92 said:
I would delete Adam.apk
Sent from my XT1053 using Tapatalk
---------- Post added at 09:58 AM ---------- Previous post was at 09:58 AM ----------
https://plus.google.com/105958707362743598012/posts/6dNzjDeNHMt
Sent from my XT1053 using Tapatalk
Click to expand...
Click to collapse
link doesn't work for me
munchy_cool said:
link doesn't work for me
Click to expand...
Click to collapse
Me either. What is Adam.apk?
Its a new apk inside the 4.4.2 /system ..
Sent from my Nexus 5 using Tapatalk

[OTA][Nexus 7 (2013) LTE]signed-razorg-KVT49L-from-KOT49H.899e0334.zip

Here is the latest "Verizon patch" OTA for your Nexus 7 (2013) LTE for anyone that wants it. The OTA doesn't seem to push unless you pop in a VZW SIM card. This is Android 4.4.2 Revision 2 and is 37MB in size. It applies only to Nexus 7 (2013) LTE devices on build KOT49H and will update you to build KVT49L. It was done at Verizon's request so I cannot confirm 100% this update doesn't kill puppies. It didn't break my ability to use my phone SIM in my Nexus 7 and tethering (I have a this on my phone data plan) still worked so not sure how evil it is.
Direct Download: Google
Unrooted, stock users can use the sideload instructions here.
Rooted stock users should not flash this OTA.
This patches a lot of things, including the radio, breaks root, and replaces the recovery. I wouldn't be surprised if it replaced your entire music library with Britney Spears tracks.
Instead, the factory recovery images are available now at Google's Developer website. If you want to flash to this version without losing data or replacing your recovery (you will lose root but reinstall Superuser with TWRP/CWN/Philz), then download the factory recovery image and modify it.
Use the install script below (removed -w from fastboot flash image) and remove recovery.img, userdata.img, and cache.img from image-razorg-kvt49l.zip. I attached the script as flash-all.bat.txt for convenience. Remove the .txt extension from it if you want to use it.
flash-all.bat
Code:
@ECHO OFF
:: Copyright 2012 The Android Open Source Project
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
PATH=%PATH%;"%SYSTEMROOT%\System32"
fastboot flash bootloader bootloader-deb-flo-04.02.img
fastboot reboot-bootloader
ping -n 5 127.0.0.1 >nul
fastboot flash radio radio-deb-deb-z00_2.42.0_1204.img
fastboot reboot-bootloader
ping -n 5 127.0.0.1 >nul
fastboot update image-razorg-kvt49l.zip
echo Press any key to exit...
pause >nul
exit
build.prop
Code:
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=KVT49L
ro.build.display.id=KVT49L
ro.build.version.incremental=979340
ro.build.version.sdk=19
ro.build.version.codename=REL
ro.build.version.release=4.4.2
ro.build.date=Tue Jan 14 20:22:58 UTC 2014
ro.build.date.utc=1389730978
ro.build.type=user
ro.build.user=android-build
ro.build.host=kpfj11.cbf.corp.google.com
ro.build.tags=release-keys
ro.product.model=Nexus 7
ro.product.brand=google
ro.product.name=razorg
ro.product.device=deb
ro.product.board=deb
ro.product.cpu.abi=armeabi-v7a
ro.product.cpu.abi2=armeabi
ro.product.manufacturer=asus
ro.product.locale.language=en
ro.product.locale.region=US
ro.wifi.channels=
ro.board.platform=msm8960
# ro.build.product is obsolete; use ro.product.device
ro.build.product=deb
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=razorg-user 4.4.2 KVT49L 979340 release-keys
ro.build.fingerprint=google/razorg/deb:4.4.2/KVT49L/979340:user/release-keys
ro.build.characteristics=tablet,nosdcard
# end build properties
#
# from device/asus/deb/system.prop
#
#
#set prefer network type
#LTE, GSM, WCDMA(9)
#
ro.telephony.default_network=9
#Display Traditional Chinese/Simplified Chinese carriers name
persist.radio.use_cc_names=true
#
# ADDITIONAL_BUILD_PROPERTIES
#
persist.radio.apm_sim_not_pwdn=1
ro.opengles.version=196608
ro.sf.lcd_density=320
persist.audio.handset.mic=dmic
persist.audio.fluence.mode=endfire
persist.audio.lowlatency.rec=false
af.resampler.quality=4
camera.disable_zsl_mode=1
persist.hwc.mdpcomp.enable=true
ro.audio.monitorRotation=true
ro.qualcomm.bt.hci_transport=smd
drm.service.enabled=true
wifi.interface=wlan0
wifi.supplicant_scan_interval=15
media.aac_51_output_enabled=true
debug.egl.recordable.rgba8888=1
ro.qc.sensors.wl_dis=true
ro.qualcomm.sensors.smd=true
ro.qualcomm.cabl=1
hw.cabl.level=Auto
persist.qcom.cabl.video_only=1
ro.hwui.texture_cache_size=48
ro.hwui.layer_cache_size=32
ro.hwui.r_buffer_cache_size=4
ro.hwui.path_cache_size=24
ro.hwui.gradient_cache_size=1
ro.hwui.drop_shadow_cache_size=5
ro.hwui.texture_cache_flushrate=0.5
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=16m
dalvik.vm.heapgrowthlimit=192m
dalvik.vm.heapsize=512m
dalvik.vm.heaptargetutilization=0.75
dalvik.vm.heapminfree=512k
dalvik.vm.heapmaxfree=8m
ro.config.ringtone=Girtab.ogg
ro.config.notification_sound=Tejat.ogg
ro.config.alarm_alert=Oxygen.ogg
fmas.spkr_6ch=35,20,110
fmas.spkr_2ch=35,25
fmas.spkr_angles=10
fmas.spkr_sgain=0
ro.carrier=unknown
ro.com.android.dateformat=MM-dd-yyyy
ro.com.android.dataroaming=false
ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html
ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/privacy.html
ro.com.google.clientidbase=android-google
ro.com.android.wifi-watchlist=GoogleGuest
ro.error.receiver.system.apps=com.google.android.gms
ro.setupwizard.enterprise_mode=1
keyguard.no_require_sim=true
ro.facelock.black_timeout=1250
ro.facelock.det_timeout=1500
ro.facelock.rec_timeout=2500
ro.facelock.lively_timeout=2500
ro.facelock.est_max_time=1000
ro.facelock.use_intro_anim=true
ro.media.effect.bgdropper.adj=0.2
camera.flash_off=0
ro.setupwizard.network_required=true
ro.com.widevine.cachesize=16777216
persist.sys.dalvik.vm.lib=libdvm.so
dalvik.vm.dexopt-flags=m=y
net.bt.name=Android
dalvik.vm.stack-trace-file=/data/anr/traces.txt
No need to do all that. Just be stock and have stock recovery installed. Take the ota and reroot. Being unlocked and rooted won't cause a problem but you will loose root because like I said reroot. If you have a custom recovery it will just not install causing no problems.

[OTA ZIP] 4.4.3 KTU84.S1.3056

Here is the OTA update zip for the GPE 4.4.3 Update. This is NOT a full rom and is only the OTA Zip
Link: http://www.androidfilehost.com/?fid=23501681358542459
build.prop
Code:
##### Merging of the /util/data/semc_kernel_time_stamp.prop file #####
ro.build.date=Mon May 12 11:10:10 CEST 2014
ro.build.date.utc=1399885810
ro.build.user=BuildUser
ro.build.host=BuildHost
##### Final patch of properties #####
ro.build.product=C6806
ro.build.description=C6806-user 4.4.3 KTU84L.S1 3056 test-keys
ro.product.brand=Sony
ro.product.name=C6806_GPe
ro.product.device=C6806
ro.product.model=C6806_GPe
ro.build.tags=release-keys
ro.build.display.id=KTU84L.S1.3056 release-keys
ro.build.fingerprint=Sony/C6806_GPe/C6806:4.4.3/KTU84L.S1/3056:user/release-keys
######################## Customized property values #########################
ro.semc.version.cust=1278-8069
ro.semc.version.cust_revision=R3C
ro.somc.customerid=8930
#############################################################################
################# Updating of the SW Version #################
ro.semc.version.fs_revision=KTU84L.S1.3056
##### Values from product package metadata #####
ro.semc.product.model=C6806
ro.semc.ms_type_id=PM-0430-BV
ro.semc.version.fs=GOOGLE-LTE
ro.semc.product.name=Sony Z Ultra Google Play Edition
ro.semc.product.device=C68
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=KTU84L.S1
ro.build.version.incremental=3056
ro.build.version.sdk=19
ro.build.version.codename=REL
ro.build.version.release=4.4.3
ro.build.type=user
ro.product.board=MSM8974
ro.product.cpu.abi=armeabi-v7a
ro.product.cpu.abi2=armeabi
ro.product.manufacturer=Sony
ro.product.locale.language=en
ro.product.locale.region=US
ro.wifi.channels=
ro.board.platform=msm8974
# ro.build.product is obsolete; use ro.product.device
# Do not try to parse ro.build.description or .fingerprint
ro.build.characteristics=default
# end build properties
#
# from device/qcom/msm8974/system.prop
#
#
# system.prop for msm8974
#
rild.libpath=/vendor/lib/libril-qc-qmi-1.so
rild.libargs=-d /dev/smd0
persist.rild.nitz_plmn=
persist.rild.nitz_long_ons_0=
persist.rild.nitz_long_ons_1=
persist.rild.nitz_long_ons_2=
persist.rild.nitz_long_ons_3=
persist.rild.nitz_short_ons_0=
persist.rild.nitz_short_ons_1=
persist.rild.nitz_short_ons_2=
persist.rild.nitz_short_ons_3=
ril.subscription.types=NV,RUIM
DEVICE_PROVISIONED=1
debug.sf.hw=1
debug.egl.hw=1
debug.composition.type=c2d
persist.hwc.mdpcomp.enable=true
debug.mdpcomp.logs=0
debug.mdpcomp.4k2kSplit=true
dalvik.vm.heapsize=36m
dev.pm.dyn_samplingrate=1
persist.demo.hdmirotationlock=false
ro.hdmi.enable=true
persist.speaker.prot.enable=false
qcom.hw.aac.encoder=true
#
# system props for the cne module
#
persist.cne.feature=1
#system props for the MM modules
media.stagefright.enable-player=true
media.stagefright.enable-http=true
media.stagefright.enable-aac=true
media.stagefright.enable-qcp=true
media.stagefright.enable-fma2dp=true
media.stagefright.enable-scan=true
mmp.enable.3g2=true
mm.enable.smoothstreaming=true
media.aac_51_output_enabled=true
#37491 is decimal sum of supported codecs in AAL
#codecs: AVI AC3 ASF AAC QCP DTS 3G2 MP2TS
mm.enable.qcom_parser=37491
# VIDC: debug_levels
# 1:ERROR 2:HIGH 4:LOW 0:NOLOGS 7:AllLOGS
vidc.debug.level=1
#
# system props for the data modules
#
ro.use_data_netmgrd=true
persist.data.netmgrd.qos.enable=true
ro.data.large_tcp_window_size=true
#system props for time-services
persist.timed.enable=true
#
# system prop for opengles version
#
# 196608 is decimal for 0x30000 to report version 3
ro.opengles.version=196608
# System property for cabl
ro.qualcomm.cabl=1
#
# System props for telephony
# System prop to turn on CdmaLTEPhone always
telephony.lteOnCdmaDevice=0
#
# System props for bluetooth
# System prop to turn on hfp client
#bluetooth.hfp.client=1
#Simulate sdcard on /data/media
#
persist.fuse_sdcard=true
#
#snapdragon value add features
#
ro.qc.sdk.audio.ssr=false
##fluencetype can be "fluence" or "fluencepro" or "none"
ro.qc.sdk.audio.fluencetype=none
persist.audio.fluence.voicecall=true
persist.audio.fluence.voicerec=false
persist.audio.fluence.speaker=true
ro.qc.sdk.gestures.camera=false
ro.qc.sdk.camera.facialproc=false
# system prop for NFC DT
ro.nfc.port=I2C
#property to enable user to access Google WFD settings.
persist.debug.wfd.enable=1
#property to choose between virtual/external wfd display
persist.sys.wfd.virtual=0
tunnel.audio.encode = true
#use VERY_HIGH_QUALITY for audio resampler
af.resampler.quality=4
#Buffer size in kbytes for compress offload playback
audio.offload.buffer.size.kb=32
#Disable offload audio video playback by default
av.offload.enable=false
#enable voice path for PCM VoIP by default
use.voice.path.for.pcm.voip=true
#disable dsp gapless mode by default
audio.offload.gapless.enabled=false
#
# from device/somc/rhine/system.prop
#
#
# platform specific part of system.prop
#
#System prop for gralloc
persist.gralloc.cp.level3=0
#System props for audio
persist.audio.hp=true
#System props for the MM Audio
media.aac_51_output_enabled=true
# system property for somc thermal solution
ro.somc.thermal=system_monitor
# Enables two core touch boost
sys.somc.touch_perf_kick=1
#System props for the MM modules
encoder.video.profile=high
# aDSP sensors
ro.qualcomm.sensors.qmd=true
debug.qualcomm.sns.hal=w
ro.qc.sdk.sensors.gestures=false
ro.qc.sensors.max_accel_rate=false
ro.qc.sensors.max_gyro_rate=false
ro.qc.sensors.max_mag_rate=false
ro.qc.sensors.smgr_mag_cal_en=true
ro.qualcomm.sensors.pedometer=false
ro.qc.sensors.step_counter=true
ro.qc.sensors.step_detector=true
ro.qualcomm.sensors.pam=false
ro.qualcomm.sensors.scrn_ortn=false
ro.qualcomm.sensors.georv=true
ro.qualcomm.sensors.smd=sony
# Do not use mdp composition for more than 3 pipes
debug.mdpcomp.maxpermixer=3
# Disable mixed mode
debug.mdpcomp.mixedmode.disable=1
# Modem power save enabled
persist.radio.add_power_save=1
#
# from device/somc/togari/system.prop
#
#
# product specific part of system.prop
#
ro.usb.pid_suffix=1B6
# NFC
ro.nfc.on.default=true
ro.nfc.se.sim.enable=true
ro.nfc.se.smx.enable=false
ro.nfc.icon.enable=false
ro.config.ringtone=Titania.ogg
ro.config.notification_sound=Tethys.ogg
ro.config.alarm_alert=Oxygen.ogg
# Telephony
ro.telephony.default_network=9
#
# ADDITIONAL_BUILD_PROPERTIES
#
ro.com.android.dataroaming=false
persist.sys.logkit.ctrlcode=0
keyguard.no_require_sim=true
ro.com.android.dateformat=MM-dd-yyyy
ro.carrier=unknown
ro.config.notification_sound=OnTheHunt.ogg
ro.config.alarm_alert=Alarm_Classic.ogg
ro.vendor.extension_library=/vendor/lib/libqc-opt.so
persist.radio.apm_sim_not_pwdn=1
ro.com.google.clientidbase=android-google
ro.setupwizard.mode=OPTIONAL
ro.com.google.gmsversion=4.4.3_r1
dalvik.vm.heapstartsize=8m
dalvik.vm.heapgrowthlimit=192m
dalvik.vm.heapsize=512m
dalvik.vm.heaptargetutilization=0.75
dalvik.vm.heapminfree=512k
dalvik.vm.heapmaxfree=8m
ro.sf.lcd_density=400
ro.hwui.texture_cache_size=48
ro.hwui.layer_cache_size=32
ro.hwui.r_buffer_cache_size=4
ro.hwui.path_cache_size=24
ro.hwui.gradient_cache_size=1
ro.hwui.drop_shadow_cache_size=5
ro.hwui.texture_cache_flushrate=0.5
ro.hwui.text_small_cache_width=1024
ro.hwui.text_small_cache_height=512
ro.hwui.text_large_cache_width=2048
ro.hwui.text_large_cache_height=1024
persist.sys.dalvik.vm.lib=libdvm.so
dalvik.vm.dexopt-flags=m=y
net.bt.name=Android
dalvik.vm.stack-trace-file=/data/anr/traces.txt
ro.service.swiqi3.supported=true
persist.service.swiqi3.enable=1
ro.drm.active.num=7
ro.drm.active.0=marlin,1
ro.drm.active.1=playready,1
ro.drm.active.2=dtla,1
ro.drm.active.3=marlin_import,1
ro.drm.active.4=ckb,1
ro.drm.active.5=widevine,1
ro.drm.active.6=dcp,1
ro.sony.fota.encrypteddata=supported
reserved just because
Hey thanks. If I have a rooted GPe can I just flash this?
Sent from my C6806_GPe using Tapatalk
texaspledge said:
Hey thanks. If I have a rooted GPe can I just flash this?
Sent from my C6806_GPe using Tapatalk
Click to expand...
Click to collapse
I sideloaded it and made sure I had selected Survival mode in SuperSU before I flashed it. You can be rooted but no system files could have been removed/modded. I mean if anything in the system has been changed it will fail. Things can be added but nothing from the original system can be removed/altered
Thanks a lot for capturing this
2 questions here:
1. Is there a changelog we can see to know the changes in this fix release?
2. I'm running stock 4.4.2 un-rooted, how do I flash this update? (sorry I'm a newbie to this specific device)
vivalamoza said:
Thanks a lot for capturing this
2 questions here:
1. Is there a changelog we can see to know the changes in this fix release?
2. I'm running stock 4.4.2 un-rooted, how do I flash this update? (sorry I'm a newbie to this specific device)
Click to expand...
Click to collapse
There are 7454 changes made between 4.4.2 and 4.4.3, so... good luck with that
Android Police is probably going through it now, and I guess they'll post about the biggest changes when they're done (in a year or three I guess)
http://www.androidpolice.com/2014/0...es-between-4-4-2-kot49h-through-4-4-3-ktu84l/
Sent from my C6806_GPe using Tapatalk
Tried to sideload the package got the following error message:
file_getprop: malformed line "0No #### Merging of the /util/data/semc_kernel_time_stamp.prop file ####" /system/build.prop not a prop file?
E:Error in /tmp/update.zip
(Status 7)
Installation aborted...
It'd be nice to see this just holistically packaged into a base 4.4.3 ROM, for those of us that have modified the /system partition.
this could be useful
http://forum.xda-developers.com/showthread.php?t=2773835
hey if someone gets the FULL ROM OTA please share it asap... i was messing around with the ROMs and ways to flash and i messed things up so ROM on my phone is broken
@OP
can u disk dump the system image? and upload it?
you can use the command:
Code:
dd if=/dev/block/platform/msm_sdcc.1/by-name/system of=/data/media/0/system_dump.img
you can do this by hotbooting my recovery kernel:
Code:
fastboot boot boot.img
then mounting the /system & /data partitions and then do the system partition dump
*cough* @graffixnyc
Sent from my C6806_GPe using Tapatalk
DooMLoRD said:
@OP
can u disk dump the system image? and upload it?
you can use the command:
Code:
dd if=/dev/block/platform/msm_sdcc.1/by-name/system of=/data/media/0/system_dump.img
you can do this by hotbooting my recovery kernel:
Code:
fastboot boot boot.img
then mounting the /system & /data partitions and then do the system partition dump
Click to expand...
Click to collapse
Yeah, I won't be able to until I get home from class though at around 9pm EST. My system is already rooted and I' very familiar with the dd command You just want the system image?
graffixnyc said:
Yeah, I won't be able to until I get home from class though at around 9pm EST. My system is already rooted and I' very familiar with the dd command You just want the system image?
Click to expand...
Click to collapse
Yes just the system image is enough
Sent from my D6503 using XDA Free mobile app
DooMLoRD said:
Yes just the system image is enough
Sent from my D6503 using XDA Free mobile app
Click to expand...
Click to collapse
OK, as soon as I get home I'll get it for ya
Sent from my OnePlus One using Tapatalk
Okay, so I guess the OTA is rolling out now. It should happen now people. Sorry to bother you again, for the fortytwelfth time @DooMLoRD, but could you hit the update button? Also, i find the lack of activity in this forum (ZU forum in general) scary low. There's been like under 10 posts today in this whole sub-forum.
We're here!!! Just been busy today
Sent from my C6806_GPe using Tapatalk
DooMLoRD said:
@OP
can u disk dump the system image? and upload it?
you can use the command:
Code:
dd if=/dev/block/platform/msm_sdcc.1/by-name/system of=/data/media/0/system_dump.img
you can do this by hotbooting my recovery kernel:
Code:
fastboot boot boot.img
then mounting the /system & /data partitions and then do the system partition dump
Click to expand...
Click to collapse
I have the update it is a 154MB zip and am trying to upload it to my Box account. After that I am willing to restore to stock, flash update then pull what you need. I will require some instruction for mounting system and data. Awaiting your command.
Edit... Here is zip if it helpful (think i seen 89MB mentioned for another upload?) https://app.box.com/s/xj64bp19t79o0enpuxo4
Nice! I'm flashing it now!
Just kidding! I'll eagerly wait for the full ROM, which I guess isn't that far away (I hope)
Sent from my C6806_GPe using Tapatalk
LordManhattan said:
Nice! I'm flashing it now!
Just kidding! I'll eagerly wait for the full ROM, which I guess isn't that far away (I hope)
Sent from my C6806_GPe using Tapatalk
Click to expand...
Click to collapse
Waiting impatiently with you as well
Sent from my C6806_GPe using XDA Premium HD app

Categories

Resources