I tried the launcher2 apk but it wont install any ideas
push it back to /system/app
adb push launcher2.apk /system/app/
Related
Hello, I know the Droid has only been out a few days, but is there anyone out there that has the icons / iconpack from the 2.0 OS? Like the green Smiley messaging icon, the new market icon etc. Thanks
ive been on search for this as well.. anybody has?
no as easy as that
you need to open the apks and insert the icon in the correct folder
dl this and try
http://www.4shared.com/file/154098442/3afed84e/Mms.html
for my instructions put downloaded file in root of c:
adb remount
adb pull /system/app/mms.apk c:\android
adb push c:\mms.apk /system/app
reboot phone
if mms fails
adb remount
adb pull /system/app/mms.apk c:\
adb push c:\android\mms.apk /system/app
what do the smileys look like?
looktall said:
what do the smileys look like?
Click to expand...
Click to collapse
the same but the blur ones are different as in jesterblur rom
I have updated modaco 1.3 and no keyboard on my Nexus One now, I have tried many time by holdding menu key or touch to input text but no keyboad show
Any ideas to resolved ?
I hope you made a nandroid back up because f you did then you can just restore and try flashing again. You could also grab an alternative keyboard from the. market or HTC_ime here
take the VoiceSearchWithKeyboard.apk from /system/app/ in the ROM you are using and push it to system/app.
you can try
Code:
adb remount
adb shell rm /system/app/VoiceSearchWithKeyboard.apk
adb shell rm /system/app/VoiceSearchWithKeyboard.odex (if it exists)
adb push VoiceSearchWithKeyboard.apk /system/app/
adb push VoiceSearchWithKeyboard.odex /system/app/ (if the .odex exists)
adb shell reboot
Hey everybody, how do you install the mms.apk to my phone so i can send mms in the right size. Not sure how to do it.
Dont want to go back to stock rom.
Thanks
Explained here
adb devices
adb remount
adb push Mms.apk system/app
adb reboot
I don't have ES or Astro either, so when I do get the apk I won't be able to browse and install it. Any tips?
If you have an update.zip try to unzip it and taking out vending.apk (or something) that's what I did at least.
-------------------------------------
Sent via the XDA Tapatalk App
You can always install through adb if you have the Vending.apk. Just put the .apk into the tools directory of your SDK and type:
Code:
adb install Vending.apk
(Never tried this, but it should work??)
"adb install Vending.apk" will put the Market into /data/app, it's preferred to have it in /system/app.
So all you have to do is:
Code:
adb remount
adb push Vending.apk /system/app
gu1dry said:
"adb install Vending.apk" will put the Market into /data/app, it's preferred to have it in /system/app.
So all you have to do is:
Code:
adb remount
adb push Vending.apk /system/app
Click to expand...
Click to collapse
Is the remount necessary? I've never quite understood what that does. I know it is required to successfully push files, but I've installed just fine without remount.
Also, thanks for the tip on how to install to other directories. I didn't know this was possible, but it makes sense
adb remount, makes /system writable.
Hi there,
I've the same problem, accidently deleted my market.
I've root and everything, though a very minor understanding about the adb.
Could some of you helpful guys give me some step by step instructions, please?
Im trying to install the stock android sms app on my mytouch. Its all rooted. I pulled the Mms.apk off the cm7 rom I have on my computer. I tried to just put it on my sdcard and install it from there. No dice. I tried to push it to system/app and when I try and install it is gives me a parsing error. I tried changing the permissions and still nothing is working. Any help would be appreciated!
pucktowake said:
Im trying to install the stock android sms app on my mytouch. Its all rooted. I pulled the Mms.apk off the cm7 rom I have on my computer. I tried to just put it on my sdcard and install it from there. No dice. I tried to push it to system/app and when I try and install it is gives me a parsing error. I tried changing the permissions and still nothing is working. Any help would be appreciated!
Click to expand...
Click to collapse
You've already asked this question ~25mins ago. If anyone know the answer i'm sure they will respond to you accordingly.
You have to remove the sense Mms.apk and Mms.odex from the /system/app folder and then push the stock Android Mms.apk or it will not work. Easiest way to remove it is to Flash CWM recovery and reboot into it and mount system and adb shell into it and type:
rm /system/app/mms.apk
rm /system/app/mms.odex
exit
and then make sure you have the stock mms.apk file on your computer and type
adb push "path of mms.apk" /system/app
unmount system and reboot and you should be good.