I'm having nothing but problems updating an apk and I'm hoping someone here can help. I've installed a modded apk of a game (smurfs village) onto a friend's phone for him. The problem was he couldn't level up or update the game. (Maybe broken market link or different signatures?) So, to try and come up with an easy solution, I installed the modded apk on my phone, found a slightly newer version and installed that over the modded apk so I had the option to update from the marketplace, then updated from the marketplace. I had no problems doing any of this and it solved the problem. I could level up and continue to update in the future. But my phone is also a rooted and unlocked HTC phone with a custom rom.
Trying to do this on my friends phone, which is a factory Samsung phone, it keeps giving me a signature verification error. What are my options here? Does he need a custom rom to skip the signature verification?
Thanks in advance,
Really hoping someone can give me some options here
Ayahuascaa said:
I'm having nothing but problems updating an apk and I'm hoping someone here can help. I've installed a modded apk of a game (smurfs village) onto a friend's phone for him. The problem was he couldn't level up or update the game. (Maybe broken market link or different signatures?) So, to try and come up with an easy solution, I installed the modded apk on my phone, found a slightly newer version and installed that over the modded apk so I had the option to update from the marketplace, then updated from the marketplace. I had no problems doing any of this and it solved the problem. I could level up and continue to update in the future. But my phone is also a rooted and unlocked HTC phone with a custom rom.
Trying to do this on my friends phone, which is a factory Samsung phone, it keeps giving me a signature verification error. What are my options here? Does he need a custom rom to skip the signature verification?
Thanks in advance,
Really hoping someone can give me some options here
Click to expand...
Click to collapse
maybe your friend's smartphone need a custom rom.
Ayahuascaa said:
I'm having nothing but problems updating an apk and I'm hoping someone here can help. I've installed a modded apk of a game (smurfs village) onto a friend's phone for him. The problem was he couldn't level up or update the game. (Maybe broken market link or different signatures?) So, to try and come up with an easy solution, I installed the modded apk on my phone, found a slightly newer version and installed that over the modded apk so I had the option to update from the marketplace, then updated from the marketplace. I had no problems doing any of this and it solved the problem. I could level up and continue to update in the future. But my phone is also a rooted and unlocked HTC phone with a custom rom.
Trying to do this on my friends phone, which is a factory Samsung phone, it keeps giving me a signature verification error. What are my options here? Does he need a custom rom to skip the signature verification?
Thanks in advance,
Really hoping someone can give me some options here
Click to expand...
Click to collapse
If it is a Samsung phone and there is Signature Verification Error (& if that is problem) then disable Signature Verification from services.jar without using custom ROM. (Works on stock ROM)
If you want to know exact steps, ask me in comments below. I will help you promptly. Just type @hnkotnis in comment so I will know you need my help.
Sent from my GT-S5360 Gadget of Mass Destruction by xda-app
using CWM........Busybox commands........ No I use my hands
hnkotnis said:
If it is a Samsung phone and there is Signature Verification Error (& if that is problem) then disable Signature Verification from services.jar without using custom ROM. (Works on stock ROM)
If you want to know exact steps, ask me in comments below. I will help you promptly. Just type @hnkotnis in comment so I will know you need my help.
Sent from my GT-S5360 Gadget of Mass Destruction by xda-app
using CWM........Busybox commands........ No I use my hands
Click to expand...
Click to collapse
@hnkotnis
Sorry it took me awhile to reply, I've had a busy morning.
It would be awesome if you could tell me how to do that, It is a Samsung phone.
I've seen that somewhere before, but thought it was just for system apps?
Thanks,
Ayahuascaa said:
@hnkotnis
Sorry it took me awhile to reply, I've had a busy morning.
It would be awesome if you could tell me how to do that, It is a Samsung phone.
I've seen that somewhere before, but thought it was just for system apps?
Thanks,
Click to expand...
Click to collapse
It is just for System Apps surely and some ROMs (I think)
Decompile /system/framework/services.jar, open com/android/server/packagemanagerservice.smali and find following
Code:
.method checkSignaturesLP([Landroid/content/pm/Signature;[Landroid/content/pm/Signature;)I
.registers 10
.parameter "s1"
.parameter "s2"
.prologue
.line 1921
Select all above and replace with
Code:
.method checkSignaturesLP([Landroid/content/pm/Signature;[Landroid/content/pm/Signature;)I
.registers 10
.parameter "s1"
.parameter "s2"
.prologue
.line 1921
[COLOR="Red"]const/4 v6, 0x0
return v6[/COLOR]
Red part is newly added.
Recompile, drag new classes.dex in old services.jar. Push and done
If you don't have above lines (Depends on phone model)
Check 2 guides here too
http://forum.xda-developers.com/showthread.php?t=2424619
hnkotnis said:
It is just for System Apps surely and some ROMs (I think)
Decompile /system/framework/services.jar, open com/android/server/packagemanagerservice.smali and find following
Code:
.method checkSignaturesLP([Landroid/content/pm/Signature;[Landroid/content/pm/Signature;)I
.registers 10
.parameter "s1"
.parameter "s2"
.prologue
.line 1921
Select all above and replace with
Code:
.method checkSignaturesLP([Landroid/content/pm/Signature;[Landroid/content/pm/Signature;)I
.registers 10
.parameter "s1"
.parameter "s2"
.prologue
.line 1921
[COLOR="Red"]const/4 v6, 0x0
return v6[/COLOR]
Red part is newly added.
Recompile, drag new classes.dex in old services.jar. Push and done
If you don't have above lines (Depends on phone model)
Check 2 guides here too
http://forum.xda-developers.com/showthread.php?t=2424619
Click to expand...
Click to collapse
Thanks for the fast reply, would it still work for games/apps even though it's just for system apps?
Instead of decompiling, could I just open it in say 7zip, or winrar and drag and drop the files I need too and from?
Sorry, I'm still new to all of this and not sure what I'm doing.
Also, is there a special program I need to open the .smali file with or can I just use notepad to edit it?
Thanks in advance, I really appreciate the help
Ayahuascaa said:
Thanks for the fast reply, would it still work for games/apps even though it's just for system apps?
Instead of decompiling, could I just open it in say 7zip, or winrar and drag and drop the files I need too and from?
Sorry, I'm still new to all of this and not sure what I'm doing.
Also, is there a special program I need to open the .smali file with or can I just use notepad to edit it?
Thanks in advance, I really appreciate the help
Click to expand...
Click to collapse
You need special program for decompiling.
I would suggest you "Android Multitool". It has nice GUI unlike other command line apps and it can decompile-recompile both
*.apk and *.jar files.
Never use notepad. It has some problems. Use Notepad++ (I am using minimalistic version, less useless features, small size, works excellent).
I am sorry, I will give you download links tomorrow. I am feeling lot sleepy and I am going to bed. Sorry again to keep you waiting till tomorrow. Search above tools on Google.
Want me to do that? Give me services.jar located in /system/framework/(here) and I will disable sign verification for you.
Sent from my GT-S5360 using xda app-developers app
hnkotnis said:
You need special program for decompiling.
I would suggest you "Android Multitool". It has nice GUI unlike other command line apps and it can decompile-recompile both
*.apk and *.jar files.
Never use notepad. It has some problems. Use Notepad++ (I am using minimalistic version, less useless features, small size, works excellent).
I am sorry, I will give you download links tomorrow. I am feeling lot sleepy and I am going to bed. Sorry again to keep you waiting till tomorrow. Search above tools on Google.
Want me to do that? Give me services.jar located in /system/framework/(here) and I will disable sign verification for you.
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
Ok, I'll look into them
That would be awesome if you could edit that file for me. I've never done anything like that before and it's not for my phone, so id rather not mess it up.
Would you be able to do it on Monday or something? I won't see the person it's for until then so I have no way of getting you the file you need until Monday.
Thanks again, really appreciate it
Ayahuascaa said:
Ok, I'll look into them
That would be awesome if you could edit that file for me. I've never done anything like that before and it's not for my phone, so id rather not mess it up.
Would you be able to do it on Monday or something? I won't see the person it's for until then so I have no way of getting you the file you need until Monday.
Thanks again, really appreciate it
Click to expand...
Click to collapse
Anytime give me the files. Don't forget to take Nandroid Backup from CWM recovery.
(***VERY VERY IMPORTANT***)
Sent from my GT-S5360 Gadget of Mass Destruction by xda-app
using CWM........Busybox commands........ No I use my hands
hnkotnis said:
Anytime give me the files. Don't forget to take Nandroid Backup from CWM recovery.
(***VERY VERY IMPORTANT***)
Sent from my GT-S5360 Gadget of Mass Destruction by xda-app
using CWM........Busybox commands........ No I use my hands
Click to expand...
Click to collapse
Ok, thank you
Will he need a custom recovery for this? As far as I know the phone is completely factory. Stock recovery, factory Rom, etc.
Ayahuascaa said:
Ok, thank you
Will he need a custom recovery for this? As far as I know the phone is completely factory. Stock recovery, factory Rom, etc.
Click to expand...
Click to collapse
For Nandroid backup, custom recovery is must. I would suggest CWM because TWRP has bugs.
Search that device forum for CWM recovery link & installation instructions.
Sent from my GT-S5360 Gadget of Mass Destruction using xda-app
Using CWM........Busybox Commands........No I use my hands
hnkotnis said:
For Nandroid backup, custom recovery is must. I would suggest CWM because TWRP has bugs.
Search that device forum for CWM recovery link & installation instructions.
Sent from my GT-S5360 Gadget of Mass Destruction using xda-app
Using CWM........Busybox Commands........No I use my hands
Click to expand...
Click to collapse
Ok
Sorry it's taking so long to get this file to you. It's for someone I work with and he's been out sick so far this week. If you would still do this for me, that would be awesome. I can't get android multitool to work. I can probably get it to tomorrow, he should be back in.
Thanks,
Ayahuascaa said:
Ok
Sorry it's taking so long to get this file to you. It's for someone I work with and he's been out sick so far this week. If you would still do this for me, that would be awesome. I can't get android multitool to work. I can probably get it to tomorrow, he should be back in.
Thanks,
Click to expand...
Click to collapse
No problem. I have working multitool and I will help you.
I need 3 files from /system/framework/(here).
1) services.jar
2) framework-res.apk (DO NOT CONFUSE WITH framework.jar)
3) twframework-res.apk (DO NOT CONFUSE WITH twframework.jar)
Related
This thread is for installation, help,
known bugs
and infos/faqs
for the shortly released build of cyanogen for the gen 8 archos
it is only "recommended" to use it with the a101 or the 70
link: http://www.openaos.org
installation:
install sde
install open aos recovery
Download the last Cyanogen img file from here: http://download.openaos.org/bubu/gen8/android/Rename the file to openaos-gingerbread then copy it to the root of your Archos
edit the menue.lst (with notepad++) to:
Archos|ARCHOS|ARCHOS|/init|0
Angstrom||/rootfs.img|/sbin/init|1
Ginger-bread||/openaos-gingerbread.img|/init|0
(add an empty line at the end)
unix breaks must be enabled in notepad++ if you are on windows.
Reboot your Archos and hold down VOL - (Down) Button, select "Developer Edition" and select in the Boot Menu "Ginger-bread".
if nothing is helping try(wont boot/ wont show ginger-bread):
http://www.filesonic.com/file/1302552154/menu.lst
bugs:
Not working:
Bluetooth
accelerated Video decoding
Suspend
TS calibration on A28/A32/A43
orientation has it hickups
Known problems:
general instability / random crashes
hard to use on resistive TS models due to missing calibration
faq:
What's working ?
Currently working:
SGX/EGL 3D acceleration
WiFi
Touchscreen
Orientation
Android Market
alot more...
screan not working on normal orientation on the a101?
activate 180* in settings-cyanogensettings-display
updating:
just exchange the img
historyin unseperated datetime)
initial 20110623
update1 20110626
update2 20110628
update3 20110629
Update4 20110708 more stability, faster
developing........ in a real guide and how to......
all credits to the geniuses of openaos and especially bubu.
and thank them(bubu,@dm8tbr and divx) for this guide too they been super helpfull
sent from my droid (not the one you are looking for)
Great!!!!!!!!!!!!!!!!!!!
I'm very excited to finally have an actual file in hand for CM7. Just FYI though, before you flash too soon:
Not working:
Audio
Bluetooth
Accelerometer
accelerated Video decoding
Suspend
TS calibration on A28/A32/A43
Known problems:
general instability / random crashes
Touchscreen has problems on the A101
hard to use on resistive TS models due to missing calibration
There's still some work to be done before it's a daily use ROM, but hopefully we can help out and fix some of these issues.
Great news guys! Look forward to testing it.
How do I edit the list?
Code:
Cyanogen||/cyanogen.img|/sbin/init|1
Update
This is really great, but you can notice this is an alfa version
coen22 said:
How do I edit the list?
Code:
Cyanogen||/cyanogen.img|/sbin/init|1
Update
This is really great, but you can notice this is an alfa version
Click to expand...
Click to collapse
see how to.....
Greeaaat
but i'll wait until its a "daily use"rom like ninja said
for now, Urukdroid is great for me
Lenn said:
Greeaaat
but i'll wait until its a "daily use"rom like ninja said
for now, Urukdroid is great for me
Click to expand...
Click to collapse
what a helpfull post again
sent from my droid (not the one you are looking for)
gbohm said:
what a helpfull post again
sent from my droid (not the one you are looking for)
Click to expand...
Click to collapse
3 guys above e posted exactly the same, but whatever...
ok i cant get this to show in the boot menu. i have put the .img file on my tab with the usb. then i edited the list like this : Cyanogen||/cyanogen.img|/sbin/init|1
what did i do wrong?
saprano614 said:
ok i cant get this to show in the boot menu. i have put the .img file on my tab with the usb. then i edited the list like this : Cyanogen||/cyanogen.img|/sbin/init|1
what did i do wrong?
Click to expand...
Click to collapse
what is the images name?
please follow my how to to the letter....
sent from my droid (not the one you are looking for)
it is cyanogen.img i think the problem is that i can get it to copy to the root. when i use sufile browser it is in the sdcard folder. and when i try to copy it to the root it says i dont have enough space. is there a way to have this on the sdcard and still work?
saprano614 said:
it is cyanogen.img i think the problem is that i can get it to copy to the root. when i use sufile browser it is in the sdcard folder. and when i try to copy it to the root it says i dont have enough space. is there a way to have this on the sdcard and still work?
Click to expand...
Click to collapse
not that i know copy it to your pc mount your archos then copy it to root and please name it like i wrote and edit your menue file like i wrote
Sent from my A101IT using XDA Premium App
Gr888888, i think we must support them, we should donate what we committed before.
gbohm said:
not that i know copy it to your pc mount your archos then copy it to root and please name it like i wrote and edit your menue file like i wrote
Sent from my A101IT using XDA Premium App
Click to expand...
Click to collapse
i did and still nothing. i will try again i just reset android
saprano614 said:
i did and still nothing. i will try again i just reset android
Click to expand...
Click to collapse
i will post my menue.lst if you want
sent from my droid (not the one you are looking for)
saprano614 said:
i did and still nothing. i will try again i just reset android
Click to expand...
Click to collapse
you have to modify it and name it openaos-gingerbread.img did you gunzip it? it should have 5xxmb.
btw put an empty line at the end of the menue.lst
sent from my droid (not the one you are looking for)
gbohm said:
i will post my menue.lst if you want
sent from my droid (not the one you are looking for)
Click to expand...
Click to collapse
please do and i will try later.
saprano614 said:
please do and i will try later.
Click to expand...
Click to collapse
no garantie it won't kill your phone
http://www.filesonic.com/file/1302552154/menu.lst
Lenn said:
3 guys above e posted exactly the same, but whatever...
Click to expand...
Click to collapse
That's probably why you got such a response funny enough im sure you was one of the first crying out for Cyanogen on gen8 at least we have something and not just a topic with users slagging each other off!!
Thankyou gbohm openaos and especially bubu for all of your hard work, great start
I know there are threads like this out there, but none of them fitted my questions...
Hi,
in this post, seo posted some ported sense 3.0 apps and widgets for Sense 2.1 GB roms.
I tried to install some of them and got MMS to work.
Then tried to get Rosie and widgets, but they wouldn't install directly, so i started playing around with ADB.
i think adb is fully set up, i am able to pull apks from /system/app.
problem is, i am obviously unable to push, install or uninstall system apps via
adb push
adb install
adb uninstall.
this was when i tried remounting (with remount,rw etc.) and was able to "rip off" rosie.apk (i know it worked as it wasn't there anymore later on ) but still was unable to install apps (with the effect i hadn't got a launcher at all.)
latest step was creating a signed update.zip, didn't work, recovery just restarts.
anyone help? someone got experience which may help me? i went through about 10 or 20 guides and am kind of desperate right now as things just dont work
thanks
SummonerOfDeath said:
I know there are threads like this out there, but none of them fitted my questions...
Hi,
in this post, seo posted some ported sense 3.0 apps and widgets for Sense 2.1 GB roms.
I tried to install some of them and got MMS to work.
Then tried to get Rosie and widgets, but they wouldn't install directly, so i started playing around with ADB.
i think adb is fully set up, i am able to pull apks from /system/app.
problem is, i am obviously unable to push, install or uninstall system apps via
adb push
adb install
adb uninstall.
this was when i tried remounting (with remount,rw etc.) and was able to "rip off" rosie.apk (i know it worked as it wasn't there anymore later on ) but still was unable to install apps (with the effect i hadn't got a launcher at all.)
latest step was creating a signed update.zip, didn't work, recovery just restarts.
anyone help? someone got experience which may help me? i went through about 10 or 20 guides and am kind of desperate right now as things just dont work
thanks
Click to expand...
Click to collapse
Pull me a recovery.log when you try installing the zip, and I'll have a look for you.
Sent from my HTC Hero using XDA Premium App
S.O.D. proudly presents.... recovery.log!
Here it is, i attached my own update.zip (rosie-signed.apk), maybe you could have a look at it as i don't know where the fault may be.
greets SOD
I would already be happy if you managed to solve the update.zip issue (would help me with other updates) but the main prob is adb noch really working, seems like some system part is blocking this?
my hero was originally a t-mobile google g2, created goldcard, rooted, custom recovery, new radio and custom rom.
a few details:
device HTC Hero (T-Mobile Google G2, the black one )
rom Salsasense RC2 (at the moment...)
recovery CWM 2.0.5.7 (think so, but im sure i got the latest)
sd 2gb
ooookay, tried to edit existing salsasense, resulting in non-functional rom rebooting into recovery.
JieeHD may you probably cook Rosie.apk and HtcClockWidget3d.apk in SalsaSense RC2 and upload it just for testing? much better would be to give me the keys to do it myself *still learning*
i tried it but the situation above occured^^ maybe some md5 thingy?
greets, SOD
SummonerOfDeath said:
ooookay, tried to edit existing salsasense, resulting in non-functional rom rebooting into recovery.
JieeHD may you probably cook Rosie.apk and HtcClockWidget3d.apk in SalsaSense RC2 and upload it just for testing? much better would be to give me the keys to do it myself *still learning*
i tried it but the situation above occured^^ maybe some md5 thingy?
greets, SOD
Click to expand...
Click to collapse
Fixed your update-script, new line for each command is needed
/facepalm
JieeHD said:
Fixed your update-script, new line for each command is needed
/facepalm
Click to expand...
Click to collapse
not serious no? /facepalm -.-" thanks will try that right now xD will give feedback if my device is still alive afterwards xDD
greets, S.O.D.
How's your progress going?
I messed around with the files 2 from the treat and they won't flash error 0. Tried to fix that with.different binery and gave me error 7. If you can make at least the king lockscreen with weather app working than you are the man
Sent from my HTC Hero using XDA App
stroobach said:
How's your progress going?
I messed around with the files 2 from the treat and they won't flash error 0. Tried to fix that with.different binery and gave me error 7. If you can make at least the king lockscreen with weather app working than you are the man
Sent from my HTC Hero using XDA App
Click to expand...
Click to collapse
brick after flashing modified rom.
push to /system/app didnt work.
flashing restarts recovery.
jieehd's tip of single lines for every command doesnt work, same as above.
error 0 = apk is not made for your device/rom, wont install.
error 7.. dunno, think its not matching binary or parsing error.
files from my thread? as post above says one is a log and the other is defect^^
i doubt weather will work as its eating HUGE amount of resources. if u want this lockscreen, maybe try salsasense, has got a 3.0 alike lock...
holidays now, wish good luck in coding would be happy if u found a solution
greets, SOD
were can i find HTCG2/hboot/PC10IMG.zip been looking all over for it and its no were to be find
Got some questions.
1. You want WHAT? And what is the purpose?
2. In how far is this related to this topic?
3. If u give us a path to this file, why do u ask where it is? Maybe try dowloAding some random rom (probably some ruu) and do extract & search..
4. Are you really willing to contribute to this topic? I dont see the point of posting this.
5. Obey forum rules. If u have got a question, post it directly in q&a section, not in some random topic or directly explain the connection to the actual topic.
Greets, s.o.d.
agnostic900rr said:
I dunno, no idea
Click to expand...
Click to collapse
what don't you know? may we help you? whats the purpose of all these posts?
i think i'll give it a last try next time wenn i got salsa sense installed and either find a solution instantly or give it up, as noone is willing to support me and i can't do much more with my poor coding skills.
seems like we have to admit that hero's dying and i have to wait for my contract to end so i get a new phone.
greets, s.o.d.
Hi, I've read a lot of threads about this and have found no feasible answer to this (at least for me). My Atrix 4G running android 2.3.4 on Blue Chronic firmware "HomeBase Mega4 - Gingerbread 2.3.4" shows a blank field in the "My phone number" section. I know that using a Sony Ericsson or an old Samsung phone will allow me to edit this on my sim card, however I do not have access to either of these types of phones. Has anybody found a way to edit this on the Atrix itself, either by using SQLite editor or even using Root Explorer's text editor? I can do it easily if I can just find the fields that need to be edited. Please help.
Any possible solutions will be much appreciated.
Also does anybody know where I can find the .apk files after an apps been installed, do they get saved to a folder on the phone like a computer's "Temporary Internet Files" folder when you just click "run" in the dialog box?
Erebus671 said:
Also does anybody know where I can find the .apk files after an apps been installed, do they get saved to a folder on the phone like a computer's "Temporary Internet Files" folder when you just click "run" in the dialog box?
Click to expand...
Click to collapse
Download AppMonster, select the app you want the apk for, select backup. Use Root Explorer to navigate to sdcard/appmonster2/[the app you want]/rev/you will find the apk here
Thanks Pirate.
Now I still need the My phone number info, hopefully someone has that info....
You can edit the phone number using CM7
hmm, I have blue chronic right now, maybe I'll try to install CM7 again, last time I tried my phone soft bricked itself.. well, I soft bricked it...
Edit: Thanks for the tip though, I'll try it again...
Update: For some reason I am unable to install CM7. No clue why, I'll do a little research and try again. In the mean time if anyone has any other possible solutions, they would be much appreciated.
Still having trouble with this, if anyone has any roms other than CM7 that they would recommend that would be nice.
Sent from my MZ601 using xda premium
Erebus671 said:
Still having trouble with this, if anyone has any roms other than CM7 that they would recommend that would be nice.
Sent from my MZ601 using xda premium
Click to expand...
Click to collapse
Are you sure you have the latest recovery recommended for CM7?
thewarhawk said:
Are you sure you have the latest recovery recommended for CM7?
Click to expand...
Click to collapse
How can I be sure and what is the recommended?
Erebus671 said:
How can I be sure and what is the recommended?
Click to expand...
Click to collapse
Just download the Rom Manager app from the market, it should let you know if your recovery is up to date and offer to update it for you if it isn't
Okay, I stated doing that after I saw your post, but just to be on the safe side, what is the recommended version, or if you're not entirely sure, where can I get it?
Sent from my MZ601 using xda premium
thewarhawk said:
Just download the Rom Manager app from the market, it should let you know if your recovery is up to date and offer to update it for you if it isn't
Click to expand...
Click to collapse
Okay, so I have 5.0.2.0. Do you know if that's the latest recommended?
Sent from my MZ601 using xda premium
Yes sir you should be good..happy flashing
thewarhawk said:
Yes sir you should be good..happy flashing
Click to expand...
Click to collapse
Okay, I have one last question for you, I can't find any threads that really explain how to fastboot and the requirements thereof, would you be kind enough to help me there? I used to know, but know my computer doesn't recognize the command and I've forgotten how to get it to recognize them...
Sent using my Motorola XOOM using XDA premium
Erebus671 said:
Okay, I have one last question for you, I can't find any threads that really explain how to fastboot and the requirements thereof, would you be kind enough to help me there? I used to know, but know my computer doesn't recognize the command and I've forgotten how to get it to recognize them...
Sent using my Motorola XOOM using XDA premium
Click to expand...
Click to collapse
You have to use the cd (change directory command) in your command prompt to get to where you fastboot program is so for example if its file path is c:/androidtools/fastboot.exe
you would have to open cmd and type
Code:
cd c:\androidtools\
and then you could run any fastboot commands from there
if you don't already have fastboot it's here
thewarhawk said:
You have to use the cd (change directory command) in your command prompt to get to where you fastboot program is so for example if its file path is c:/androidtools/fastboot.exe
you would have to open cmd and type
Code:
cd c:\androidtools\
and then you could run any fastboot commands from there
if you don't already have fastboot it's here
Click to expand...
Click to collapse
Sorry I missed it, I figured it out after a while though, my directory is also different than yours, but thank you.
Sent from my MB860 using xda premium
i use stock rom and can't see my number in settings
gokhansouth said:
i use stock rom and can't see my number in settings
Click to expand...
Click to collapse
It's the same for me
I had that problem when I switched my carrier. I have not came across a ROM for it that allows SIM number change. If you dont have an issue installing this, use that to change your number, otherwise you might need to borrow someone's blackberry phone to do it, most of the BB's are known to be able to edit SIM numbers apparently.
I ended up digging out my old Acer Liquid E running CM7 based ROM which had the SIM number option and worked like a charm on my current SIM (it is the proper number now). But this option is no where to be found on the Atrix's CM7 ROMs
Hey Kids, I figured it was getting kind of boring around here so I'm releasing a little tool I've been using for a while now. It's just what it says, an "Auto Flasher". It will flash any rom, any kernel, backup data, restore data, fix permissions, etc. With full wipe function or just a cache and delvik wipe. All from the comforts of your pc. Just plug in your evo3d with usb debugging enabled and some room on your sdcard and off you go. Oh, almost forgot. This will also Odex all your system apk's if you like. It's on the menu. Even if you have some odexed, it will skip over those.
Things to do first:
1. Run the AF4.5setup.exe. Choose a location (I like the desktop) to run it from. It will create a folder called Auto Flasher V4.5.
1.a Run the 2.08setup.exe and the 2.17setup.exe *(these are just RUU 2.08 and RUU 2.17. Download them even if you already have them. The exe will install them to the proper folder.)
2. Open the Auto Flasher V4.5\Place-Files-Here\ROM folder and copy paste your rom of choice.
3. Open the Auto Flasher V4.5\Place-Files-Here\Kernel folder and copy paste your kernel of choice (if your flashing a kernel).
4. Make sure USB debugging is on and you have about 500 mb on your sdcard.
5. If you need HTC drivers, look in the \Drivers folder. (Install them first).
6. Run the Auto_Flasher_V4.5.bat.
7. Sit back with a brew and watch the show. (It will prompt you a couple of times for some yes and no questions).
NOTES:
I had to separate the .exe's because of file size limitations on DevHost. If your not doing a firmware change then you don't need them. But I recommend you download them.
When restoring data, run your rom first for a couple of minutes. I found everything takes nicer.
When running "11. Fastboot Radio/Wimax Flasher" Please make sure you don"t interrupt this. You won't like the results. If something goes wrong, you will have to flash your radio manually because you'll be in a nasty bootloop.
This is a beta release. Many improvements on the way.
Disclaimer:
If you say I bricked your phone. I will laugh. Nothing this does can't be undone with a nand restore. So for the love of god, DO A NAND BACKUP FIRST!!!
Download: New Links
http://dev-host.org/sFH - (Version 4.5)
http://dev-host.org/u2l - (2.08 setup)
http://dev-host.org/em1 - (2.17 setup)
Old:
http://dev-host.org/btB - (Version 4)
ChangeLog:
V4.5
- Added 12th Menu ---> Hboot 1.5 Flasher
- Same as V4 just with Hboot 1.5 Support.
- Still working on V5
V4
- Added 11th Menu
- Fastboot Radio/Wimax Flasher
- Added Date and time
- Fixed some bugs
- Realigned menu
- Added a lot more arguments (for less problems)
- 32x (bit) Compatibility
- New Icon
- Suprises coming in V5!!!
V3
- Initial release
Edit: For those who have downloaded V4 before 2/27/12, don't use the Auto_Flasher_V4.exe. There's some thing wrong with it. Instead, I've attached Auto_Flasher_V4.bat (unzip it of course). Place that in the \Auto Flasher V4\Auto Flasher V4 directory were adb.exe and all the other files are. Run that instead. Other wise redownload the whole thing again. New link is up.
Special thanks go out to to my son ZxZueSxS for helping me write this and the XDA family. You guys are great.
Big Thanks to all of the people that downloaded this.
If you like this please hit thanks on my page and ZxZueSxS page.
Will this work on hboot 1.5?
jdeoxys said:
Will this work on hboot 1.5?
Click to expand...
Click to collapse
Yes. the zipped folder has TWRP 1.1.1 in it, which works the same way, if you run it manually with ADB and Fastboot. The OP has made the process a little shorter and easier for you.
Thanks gonna give this a try later, so basically this acting like a Recovery in a way...
Sent from my PG8610000 using xda premium
gunfromsako said:
Thanks gonna give this a try later, so basically this acting like a Recovery in a way...
Sent from my PG8610000 using xda premium
Click to expand...
Click to collapse
Yes, it boots a recovery img.
just wanted to say thanks, gonna try this now. i see your in valpo too, that Indiana?
Yes it is
Sent from my PG86100 using XDA App
I'm currently working on a fastboot flasher add-on for radio's and wimax. Any request to make things easier?
Redownload
Sorry guys. I didn't have all the files in the zip. Please redownload. New link is up.
Although I have not yet tried this, I did just download it and feel like a kid at Christmas. I cannot wait to try this.
I'm on 1.5 as well; I'll give this a go and let you know how it goes!
Thanks a ton!
Sent from my Etch-A-Sketch using Tapatalk.
rpenrod23 said:
Although I have not yet tried this, I did just download it and feel like a kid at Christmas. I cannot wait to try this.
I'm on 1.5 as well; I'll give this a go and let you know how it goes!
Thanks a ton!
Sent from my Etch-A-Sketch using Tapatalk.
Click to expand...
Click to collapse
Thanks. Reply's are welcomed. I'm not sure how it does with 1.5. I'm on 1.4. But if you let me know, I can alter it as needed.
Macropoutsis said:
Thanks. Reply's are welcomed. I'm not sure how it does with 1.5. I'm on 1.4. But if you let me know, I can alter it as needed.
Click to expand...
Click to collapse
I have downloaded this on 2 different PCs with both IE and Firefox and am unable to run the Auto_Flasher_V3.exe.
I receive the good ol' "Auto_Flasher_V3.exe is not a valid Win32 application" error.
Thoughts? I find it hard to believe that I have downloaded multiple bad copies.
rpenrod23 said:
I have downloaded this on 2 different PCs with both IE and Firefox and am unable to run the Auto_Flasher_V3.exe.
I receive the good ol' "Auto_Flasher_V3.exe is not a valid Win32 application" error.
Thoughts? I find it hard to believe that I have downloaded multiple bad copies.
Click to expand...
Click to collapse
That's odd. I'm not sure. What OS are you running?
rpenrod23 said:
I have downloaded this on 2 different PCs with both IE and Firefox and am unable to run the Auto_Flasher_V3.exe.
I receive the good ol' "Auto_Flasher_V3.exe is not a valid Win32 application" error.
Thoughts? I find it hard to believe that I have downloaded multiple bad copies.
Click to expand...
Click to collapse
Sorry about that. I figured it out and have made changes in V4.
Update V4
Just put up V4. Many improvements. Give it a try.
the link in the first page says THERE IS NO FILE.
please be kind to upload your latest version.
thanks very much.
New Link
For those who have downloaded V4 before 2/27/12, don't use the Auto_Flasher_V4.exe. There's some thing wrong with it. Instead, I've attached Auto_Flasher_V4.bat (unzip it of course). Place that in the \Auto Flasher V4\Auto Flasher V4 directory were adb.exe and all the other files are. Run that instead. Other wise redownload the whole thing again. New link is up.
dralibak said:
the link in the first page says THERE IS NO FILE.
please be kind to upload your latest version.
thanks very much.
Click to expand...
Click to collapse
Link is up. Had to take it down. Sorry
Hey guys, I need someone with Hboot 1.50 to test this. I'm on 1.40. I believe you need to use the HTC Unlock Hboot 1.50 method first found here http://www.htcdev.com/bootloader . Then just use the tool. Thanks.
Will HBOOT 1.5 users be able to flash new radios/wimax with this without having to run the latest ruu? Thanks
I just Made This for Person (s) Intrested In Stock Google ICS with a Twist Many of the apps and Theme (s) Come from Others and Not me More Info below.
Program Required:
WinRar/7zip/Any ZIP utility
For XP users Please Download a Program Called PowerToy for CMD anywhere or manually change the directory with " cd /*****/****/**"
Device features required:
Unlocked Bootloader
minimal Experiance In flashing Kernels
Knowledge about CWM
Patience.
Notice!
Games may not work as smoothly as Gingerbread Because of this being a "Beta" and the Company Won't Update their games Untill Officall ICS SONY.
As well as this Wi-fi Is fixed and Can Connect but you may get random errors Please Don't Hesitate for Support as I know it can be Scary sometimes if your new.
Data & Calls are Perfectomondo as far as I know so any error You know where to come Eighter here Or the Q&A.
If you dont have Dropbox and want 2 GB of free Cloud Storage (good for people without a HDD or USB /HDD.) Please Sign Up I get 250MB of free Storage Meaning faster downloads for you and more Uploads of Hotfixes.
You Just Unzip To this Directory:
-->/sdcard/clockworkmod/backup/Backup_Goes_Here.
If anyone Thinks This Should Be removed Im only Trying to Help Some Non-Experianced People With Issues With Custom Roms and Flashing (Such as myself But I'd say I Know Quite a bit).
This is Only a Backup! Kind Of development Not a Theme or ROM just Backup!
Reassons Why You may need this:
*Incase You Flash a Bad Zip Which Gives Errors
*Just To Feel Stock ICS
*Wanting Custimization In a Certain Boundry
*Less Dangerous (Not sure about this But Put it here anyways )
*FileSize
*You Can restore Data/system/boot/cache With CWM using Advanced Restore
*Just Requires a Simple Kernel Such as Doom's Advanced Stock ICS kernel.
*Could Be a Base for Your Development or Theme
How to Install Noob Guide (Only for People Who have No clue How to Flash even tho You should Leave Now if you dont know what your doing )
Step 1) Download the fastboot Package and Install Drivers By Going to Device manger and enter fastboot (via Holding search While Device off, Then Your PC should Try to locate Drivers If everything Goes well It will Fail.
Then Manually Click Browse for them and go to were your Fastboot is But When you get here -->Fastboot-->Fastboot.exe & Drivers Just seelect Drivers and click ok.
Step 2) Now drivers are installed You can Move the boot.img file whatever the kernel name is to the fastboot folder Keep It in that Directory.
Rename the kernel to Boot.
step 3) Now we can Hold Shift and whilst holding Right Click and Open "Command Prompt here".
Step 4) Type the command If you want to Flash and stay In Fastboot and manually reboot:
"Fastboot flash boot boot.img" Ignore the (").
If you wish to Hotboot it do the following:
"fastboot boot boot.img".
step 5) Spam back button or Volume down Untill You Get In CWM if you have not got the backup in the location then go to "mounts and storage" In CWM. Click Mount and makesure SD card is Mounted it should say this if it is "Unmount SD".
Then Just Copy the files over.
Step 6)Go to "Backup and Restore" and Click The backup "File name" If you rename the backup makesure there are no spaces or you'' Get MD5 Mismatch.
Remember to extract the Zip to ClockWorkMod-->Backup-->Backup here.
[disclamer]
In no means Is this a ROM its a Backup for many purpose and requires an Unlcoked Bootloader Not having so will Result In a Bootloop or Your Phone Wont boot.
This does not act upon a ROM or Theme just a Backup so please use Custom ROMs If there Is anything You wish to add Comment Below and State What you Woould Like.
[Is there Something That you Own and Dont want it in this Backup?]
I understand If you want me to Remove something in this Backup Please Tell me Why and I will Be most happy to remove it, But this is actually making your Thing well Known but ah well.
Thanks To these Great People for the Sources:
ICX team for Some Sony apps
Thomasaffca for his Wondeerful themes
DoomLord for His Kernel and etc
KeiranFTW for His ICX kernel and Some Sony apps + Xperia Tweaks
CM9 Team (Andrew) for CM9 player
The Creators Of DSP
Sony For there Large Step In actually helping us
Google for ICS!
and ChaosFirZen
Thanks PaxChristos!
If I forget You in the Credits Remind Me Please and feel free to yell at me If I do ;p.
Presented By Team HyD^Og3N
CDMA USERS & R800x
Looke;
CDMA Signal FIX: http://forum.xda-developers.com/showpost.php?p=24201160&postcount=54
CDMA Data &Calls fix: http://forum.xda-developers.com/showpost.php?p=24231693&postcount=34
Notice CDMA has Issues With ICS beta!
Downloads:
http://dl.dropbox.com/u/39509975/MooDeDBackupICS.zip
Hotfixes are In the XDA links below (if there are any)
http://dl.dropbox.com/u/39509975/DSPmanager-ics.zip
Also If you Experiance Music Player Fails Open Titanium Backup and Find Music and "Wipe Data" Its a Bug In the App Not the Backup/ROM
This Backup/ROM is here for you guys as a Simple way of getting ICS from Sony Official Release Without doing 3 Fastboot Commands the Only Command you need it the one for the kernel Explained above!
sorry to moan but
really finding it hard to read your post with the colour font you chose
Dude Il change It Uploading Now [old]
Reserved for later
Changed Colour and I need to get links But I posted because This might help and Its Kinda development in a way not Custom ROM way just in a way [old]
Im going to Compress This for store taking for evr [new]
u should know... the shift+Rclick doesn't work on Windows XP OS.
I had a verry hard time figuring where do people see this command line when i was using windows xp.
And when selecting fastboot drivers in device manager, windows xp doesn't have the option to automatically search for the proper drivers inside the entire "drivers" folder.. u'll have to manually select the proper .inf file.. wich ofcourse i didn't know the good one since there are many. the automatic search for the driver is only available in windows 7 (and vista?)
thought u should mention it.
SirDeadly said:
u should know... the shift+Rclick doesn't work on Windows XP OS.
I had a verry hard time figuring where do people see this command line when i was using windows xp.
And when selecting fastboot drivers in device manager, windows xp doesn't have the option to automatically search for the proper drivers inside the entire "drivers" folder.. u'll have to manually select the proper .inf file.. wich ofcourse i didn't know the good one since there are many. the automatic search for the driver is only available in windows 7 (and vista?)
thought u should mention it.
Click to expand...
Click to collapse
Boss use google ..
Download and install 'right click open cmd here' from xp power toys..
Sent from my R800i using Tapatalk
Or just use cd command in cmd to change cmd directory
Sent from my R800i using xda premium
Or buy a WIndows System Upgrade for like £40/$50/60
Or iNstall linux/Ubuntu Really good Im using it!
Just an FYI, CDMA users of ICS Sony Beta are still encountering problems with it actually working, so you might wanna wait to "support" CDMA until we get it spot on.
Pax
Oh Thanks Pax !
gonemad02 said:
Or just use cd command in cmd to change cmd directory
Sent from my R800i using xda premium
Click to expand...
Click to collapse
he mentioned "for people who have no clue" so... command prompt cmds might aswell be in martian language m8...
i tried to tell him to include those steps
as for the "xp power toys" i had no clue, thank you imkentoy, that's good to know for the future.. if i ever come back to XP.
The horrors of such a font...
CrimsonKnight13 said:
The horrors of such a font...
Click to expand...
Click to collapse
For all r800x users I have really great news
KA12 Ice Cream Sony, post 371
Check it out, I'm really happy to announce this
ka though this is a thread of a ROM y post your rom in my one?
Xperia4life said:
ka though this is a thread of a ROM y post your rom in my one?
Click to expand...
Click to collapse
Because the fix should also work on your rom if it works on mine
If your rom is based on ICS beta?
Oh I thought you Posted your Actual ROM on the Thread lol!
Thanks Currently Compiling CM9 on my PC
Xperia4life said:
Oh I thought you Posted your Actual ROM on the Thread lol!
Thanks Currently Compiling CM9 on my PC
Click to expand...
Click to collapse
No, just the link to the post with explanation about CDMA patch and installation lol