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
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 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?
And now my tab only does a boot loop. I cant copy the stock one back over with ADB keeps giving me permission denied. I've tried everything. Any ideas? The only thing done to my tab is the clubtech flashing method to make phone calls, and its rooted, but I cant get shell root
Help
Put it on an sdcard (I'm sure you have other android phones to mount it with, or use ADB if the tab has it mounted)
Code:
adb remount
adb shell
su
cp /sdcard/external_sd/framework-res.apk /system/framework/framework-res.apk
reboot
That should do it. I assume in this that framework-res.apk is on the external SD card, and that the US tab mounts it in the same place. You could aslo use adb to push framework-res.apk to /data/framework-res.apk, and copy it from there.
My problem is that I wasn't getting root in the adb shell, managed to fix that and pushed the framework to the system booted just fine. Thanks man
Sent from the Galaxy Tab, that makes phone calls
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.
hello everyone,
I recently got my new Xperia play, rooted it and replaced the very very unusable Se Keyboard with the standart LatinIME.apk.
I really dont like the Se apps so I also wanna get rid of the Sms and Email app but when im installing the normal Email.apk im getting
$ adb install "Email(3).apk"
2062 KB/s (1015277 bytes in 0.480s)
pkg: /data/local/tmp/Email(3).apk
Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE]
I hope somebody could clear this up
Laberkopf
Done, thanks to AndroHero I found out that the correct procedure for replacing such apps is:
adb remount
adb push apkname.apk /system/app/
adb remount
adb shell
#reboot
I've replaced the SemcEmail.apk with the Email.apk from Oxygen-2.0-rc7 for the Htc Desire.
Also I've replaced the Conversation.apk withe the Mms.apk from Oxygen.
Thanks AdamG and AndroHero