[Q] Frustrated with theme install - Xperia Play Themes and Apps

Hello all,
I have a Rogers Xperia play, 2.3.3. (UK firmware, already rooted).
Locked bootloader, and sim lock, so I can't use the SE website to unlock. Hence I can't get to fastboot, and use any kind of clockwork mod recovery etc..
I made a theme in the UOT kitchen. I provided my framwork-res, and SystemUI files to the site.
How the F#$% do I install this theme? I've read some instructions on using ADB (http://forum.xda-developers.com/showthread.php?t=1065789), but last time I tried that (ADB itself works correctly and sees my phone) using a theme on the Xperia Play forum, my phone went in a reboot loop.
I'd like to avoid having to reinstall my apps again, yes I know I can get a backup application, but that's not the point of this thread
Any advice on how to install this would be appreciated.

Same here but with sim unlocked, Sony Ericsson Xperia Play Rooted 2.3.3 bootloader locked ,i tried 6 times ,3 times without changing permissions ,3 with changing permissions and no result i only managed to change the SystemUI.apk to work and not get in the bootloop and the framework-res.apk makes the phone get in the bootloop

same problem here.......Waiting for a newbie tutorial

Have to tried using root explorer to install your theme? It's really easy to do I had a hard time using adb to install my theme too I kept going into bootloop but once I used root explorer got it installed in a few minutes
Sent from my R800i using XDA App

just copy the .apk's to the platform-tools folder, fire up adb and type in
adb remount
adb push framework-res.apk /system/framework
adb push systemui.apk /system/app
adb reboot
Done

thatsupnow said:
Have to tried using root explorer to install your theme? It's really easy to do I had a hard time using adb to install my theme too I kept going into bootloop but once I used root explorer got it installed in a few minutes
Sent from my R800i using XDA App
Click to expand...
Click to collapse
I tried it aswell but I also got a boot loop.
I'm confused about these permissions :S

GetPatriotized said:
I tried it aswell but I also got a boot loop.
I'm confused about these permissions :S
Click to expand...
Click to collapse
You will get a bootloop, if the theme you are tying to install, has an incompatible framework.... You should always make sure the theme is made for your firmware version, as for the permissions, its only if you use root explorer, if you use adb the correct permissions will already be set

AndroHero said:
You will get a bootloop, if the theme you are tying to install, has an incompatible framework.... You should always make sure the theme is made for your firmware version, as for the permissions, its only if you use root explorer, if you use adb the correct permissions will already be set
Click to expand...
Click to collapse
I'm on 2.3.3 UK with Rogers Xperia Play.
I'm using root explorer because I'm lost with ADB

If that's the case the make sure you set permissions rw-r--r-- before you move them into the proper folders. Have fun dude
Sent from my R800i using XDA App

Just to ad to @thatsupnow's post, move them to /system first and then set permissions there and then move to the correct folder as he said. That should keep you out of bootloop as long as you use compatible themes or your own cooked framework/systemUI as @androhero also mentioned
Regards Dousan...

I JUST MANAGED TO INSTALL A THEME WOOhOO
now how to do it:
1.copy the SystemUi.apk,framework-res.apk etc. on you SD Card
2.Use a File Explorer that can change permissions (I used Root Explorer from market,pm me for a link if you don't have money to buy it)
3.Copy SystemUi.apk to /System not /system/app and there change the permissions to rw-r--r-- (Be carefull , i accidentaly left rw-r--r-x and it didn't work)
4.Now replace the SystemUi.apk from system/app/ with the one from /system/
5.You will need to restart the phone (i couldn't because many Force Closes so i removed the battery then placed back) and now you have the new Notification Bar
6.Now do the 2-3-4-5 steps with framework-res.apk and this time the phone will restart itself after you copy it.
Where SystemUi.apk and Framework-res.apk go:
SystemUi.apk => /system/app
Framework-res.apk => /system/framework

AndroHero said:
just copy the .apk's to the platform-tools folder, fire up adb and type in
adb remount
adb push framework-res.apk /system/framework
adb push systemui.apk /system/app
adb reboot
Done
Click to expand...
Click to collapse
On a side note to this I had a little fun with ninjamorph and changed colors on some .png's in both systemui and framework-res and ended up with nearly all my apps fc'ing. Couldn't get adb to remount and got a permissions denied error. Then did a adb shell instaed and that worked. Check link for command's:
http://forum.xda-developers.com/showpost.php?p=13984118&postcount=3
Regards Dousan...

How to I change it to rw-r--r-- ?
Like what format is that?
I'm in the pop op where it shows the 9 boxes.
Owner,group,others etc. do you have a picture or something?

GetPatriotized said:
How to I change it to rw-r--r-- ?
Like what format is that?
I'm in the pop op where it shows the 9 boxes.
Owner,group,others etc. do you have a picture or something?
Click to expand...
Click to collapse
User-Group-Others- rw-r--r--

Related

[MOD] Six(6) Lockscreens & Power Menu + Clock Options for KC1 [EDT][4.22.2011]

Ok everyone. Here is the lockscreen mod, power menu AND additional clock options for KC1. This will NOT work on Krylon's stock build but ONLY my deodexed one. Since there is no cwm yet you will need to push the files manually with adb or use root explorer to drop them in. Root Explorer is the easiest method. Just be sure to set permissions on all the files to rw-r--r-- after you copy them in.
Lockscreens are Rotary (default), Puzzle, Android, Glass, Epic and Star Wars (Settings > Display > Unlock Screen)(Please be aware - Lockscreen wallpapers are not supported on any of these)
Power Menu (no header) - Reboot, Recovery, Download mode
Clock Options - Hide Clock, Hide am/pm (Settings > Date and Time)
Added "Stay Awake" option (Settings > Applications > Development)
Pretty sure I killed the "battery full" pop-up as well
DOWNLOAD <<<<< KC1 Lockscreens / Power Menu / Clock Options
If using adb here is what to do...
Place the files in the zip in your adb tools folder. Navigate to your tools folder in your cmd prompt and perform these commands
First, mount your system as r/w
Code:
adb shell
su (will need to accept root access on phone)
mount -o remount,rw /dev/block/stl9 /system
Your system is now mounted as read/write. Now remove the original files from your phone.
Code:
rm /system/framework/framework-res.apk
rm /system/framework/framework.jar
rm /system/framework/android.policy.jar
rm /system/framework/services.jar
rm /system/app/Settings.apk
exit
exit
Now push the new files into place.
framework files to framework folder
Code:
adb push framework-res.apk /system/framework
adb push framework.jar /system/framework
adb push android.policy.jar /system/framework
adb push services.jar /system/framework
Settings to app folder
Code:
adb push Settings.apk /system/app
Now the files are all in place, but you need to set the correct permission on them.
Code:
adb shell
su
chmod 644 /system/framework/framework-res.apk
chmod 644 /system/framework/framework.jar
chmod 644 /system/framework/android.policy.jar
chmod 644 /system/framework/services.jar
chmod 644 /system/app/Settings.apk
DONE. Now reboot your phone. It will take about 5 minutes to reboot.
Again, you can use Root Explorer to move these files into place manually. Just be sure to set the permissions of all of them to rw-r--r-- after you do.
Credits
~ Untermensch for ultimately being my mentor on lockscreens and for his write-up on doing the power menu
~ S0niqu3 for the hide am/pm source
~ sbrissen for the hide clock source
Used root explorer to drop them in place and reset permissions work like a charm thanks
Sent from my SGH-T959V using XDA Premium App
Android, Rotary and Star Wars unlock doesn't have unlock sounds
Sent from my SGH-T959V using XDA Premium App
Wow. That was fast. Thank you much.
Sent from my SGH-T959V using XDA Premium App
chadster214 said:
Android, Rotary and Star Wars unlock doesn't have unlock sounds
Sent from my SGH-T959V using XDA Premium App
Click to expand...
Click to collapse
Yea only not all the lockscreens support unlock sounds. Only the twiz lockscreens support the twiz music player widget as well.
if u use root explorer do i just have to replace the framework and put the new one?
crunkhead18 said:
if u use root explorer do i just have to replace the framework and put the new one?
Click to expand...
Click to collapse
yes, just overwrite the files
Can someone show me how to use this root explorer instead of adb
Sent from my SGH-T959V using XDA Premium App
rickyy00 said:
Can someone show me how to use this root explorer instead of adb
Sent from my SGH-T959V using XDA Premium App
Click to expand...
Click to collapse
I would honestly learn the basics before you try any of this.
i allready flashed stock deodexed kc1 rom onto my phone in hopes of putting on the lockscreens but i just wanted to know if the root explorer method was easier like he stated up there
I really want these....but its quite painful setting up all my sync'ed accounts again after flashing. I went from Deodexed to Krylon's Odexed Stock, to go back to Deodexed would be a painful process again to get all my accounts set back up and app's loaded + moved to SD. Also fixing the camera/mms/phone issue with the Deodexed ROM on top of that.
Anybody else have any thoughts? Just do it? Haha
mikeDCMDVA said:
I really want these....but its quite painful setting up all my sync'ed accounts again after flashing. I went from Deodexed to Krylon's Odexed Stock, to go back to Deodexed would be a painful process again to get all my accounts set back up and app's loaded + moved to SD. Also fixing the camera/mms/phone issue with the Deodexed ROM on top of that.
Anybody else have any thoughts? Just do it? Haha
Click to expand...
Click to collapse
I used ES File Explorer, go into settings, and check the two boxes in Root setting.
Then go to the directory where the zip is saved, extract and copy paste to the right directories. Once that was done I rebooted. It took 5 min or so to boot but It came up. Once done go into settings and change lockscreen.
Worked like a charm for me. Thanks!!!
rickyy00 said:
i allready flashed stock deodexed kc1 rom onto my phone in hopes of putting on the lockscreens but i just wanted to know if the root explorer method was easier like he stated up there
Click to expand...
Click to collapse
as the OP say " use root explorer to drop them in" come on dude!!! READ!!!
chadster214 said:
as the OP say " use root explorer to drop them in" come on dude!!! READ!!!
Click to expand...
Click to collapse
DUDE THAT GUY NEEDS TO BE SPOON FED ON EVERYTHING! Even though it's already straight outlined for him.
YES RICKY00.
IF THE OP SAYS IT'S THE EASIEST METHOD THEN YES IT IS THE EASIEST METHOD. I USE IT BECAUSE IT'S THE EASIEST METHOD AND WELL WORTH THE MONEY TO PAY FOR THAT APP CUZ OF HOW EASY IT IS TO USE AND SINCE I'M A LAZY ASS TO USE ADB EVEN THOUGH ADB ISN'T THAT HARD.
so to be clear...
i have to flash the deodexed rom in order to have this?
i cant push them with root explorer with only a rooted 4gs?
freaktractor said:
so to be clear...
i have to flash the deodexed rom in order to have this?
i cant push them with root explorer with only a rooted 4gs?
Click to expand...
Click to collapse
you have to flash to Deodexed KC1
Oh boy, so I was able to do this via ADB.
But thought I would also try and do it with Root Explorer. I am bored at my job today.
I copied the files to the sdcard. Then opened Root explorer, located the files, using multi- select I selected all but the settings file that goes into the system/app.
I then hit copy/ then tried to paste the four files to system/framework
I get an error that says there isn't enough space. Then I get all sorts of force closes, and have to re-odin the deodexed KC1.
What the hell am I doing wrong? I am sure I am just having a brain fart but its becoming irritating.
Bl4ckpheniX said:
Oh boy, so I was able to do this via ADB.
But thought I would also try and do it with Root Explorer. I am bored at my job today.
I copied the files to the sdcard. Then opened Root explorer, located the files, using multi- select I selected all but the settings file that goes into the system/app.
I then hit copy/ then tried to paste the four files to system/framework
I get an error that says there isn't enough space. Then I get all sorts of force closes, and have to re-odin the deodexed KC1.
What the hell am I doing wrong? I am sure I am just having a brain fart but its becoming irritating.
Click to expand...
Click to collapse
I had the same problem with another framework, and cringed when I tried this method. BUT, I used ES File explorer for this mod and everything worked like a charm. I didnt have to set permissions or anything.
Bl4ckpheniX said:
Oh boy, so I was able to do this via ADB.
But thought I would also try and do it with Root Explorer. I am bored at my job today.
I copied the files to the sdcard. Then opened Root explorer, located the files, using multi- select I selected all but the settings file that goes into the system/app.
I then hit copy/ then tried to paste the four files to system/framework
I get an error that says there isn't enough space. Then I get all sorts of force closes, and have to re-odin the deodexed KC1.
What the hell am I doing wrong? I am sure I am just having a brain fart but its becoming irritating.
Click to expand...
Click to collapse
Try using es file explorer
Sent from my SGH-T959V using XDA Premium App
fknfocused said:
I used ES File Explorer, go into settings, and check the two boxes in Root setting.
Then go to the directory where the zip is saved, extract and copy paste to the right directories. Once that was done I rebooted. It took 5 min or so to boot but It came up. Once done go into settings and change lockscreen.
Worked like a charm for me. Thanks!!!
Click to expand...
Click to collapse
I am not deodexed though.

Problem Changing System Background Image

Hi all.. Having a problem changing the system background on my daughters x10.. (The background you get behind all the system menus and apps like calculator and calendar etc..)
I did this on my Arc recently and it was a doddle - once I'd got the images cropped to the right size..
So here's what I did on the X10.
Copied the framework-res.apk to the SD card
Opened it using 7zip
navigated to res\drawable-hdpi
replaced the semc_bg and semc_general_bg images with the new ones I'd created.
then navigated to res\drawable-land-hdpi and replaced the semc_bg image in there.
copied the file back into the system folder.
changed the permissions to rw-r--r--
copied it to framework folder...
phone reboots and then gets stuck at sony ericsson white logo screen...
reflashed using SEUS twice now!..
On the Arc I also had to amend the image files in another place.. SemcGenericUxpRes\res
but I don't seem to have that folder on the x10...
Thanks.
** BUMP ** Anyone?
What rom/firmware are you on?
How are you moving the framework-res?
Sent from my X10a using XDA App
stock 2.1 unbranded.. moving it using root explorer.. which is what I did on my arc..
Sent from The Arc!
Try moving it using adb push. Or use adb mask controller or x10 mod tool if you like/need a gui. You could also make a zip for xrecovery if you have it installed. Root explorer method never worked for me on x10 either...
Sent from my X10a using XDA App
Thanks Might try ADB pushing it.. although if I knacker her phone up again she'll not be happy.. so I might just let her decide if she wants me to take the risk... haven't bought titanium for her phone cos I don't want to register MY card on HER phone... recipe for disaster!
im_iceman said:
Thanks Might try ADB pushing it.. although if I knacker her phone up again she'll not be happy.. so I might just let her decide if she wants me to take the risk... haven't bought titanium for her phone cos I don't want to register MY card on HER phone... recipe for disaster!
Click to expand...
Click to collapse
adb should work just fine. Also have you installed recovery ? If no do it and take nandroid before doing it. It would go back to just like it was before.
Yea, xrecovery is super-easy to install & well worth it. Plus you (or one of us) could add the framework-res into a flashable zip we know will work.
BTW, there is a free version of titanium... &/or xrecovery will back up your entire phone as realunited said.
Thanks - Yeah - realised there was a free version after I posted - got it mixed up in my head with Root Explorer!.. yes - have xrecovery on there too.. is nandroid on the market? or is it part of xrecovery - not used it for a few months..
Cheers.
It just means using the backup option in xrecovery. There is a tut for making xrec zips in the dev section or post the framework-res here & I can look at it later when I get home.
Sent from my X10a using XDA App
Hi Aydee - Thanks for your help with this so far!!.. I've done a nandroid backup on the x10 and trying to ADB push the file - it won't let me - says "permission denied".. I tried ADB Remount and shell commands...
$ adb shell
$ su
$ mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
both not giving me r/w access...
X10 is rooted and busybox installed....
What am I doing wrong?!
[edit - got the su working in shell.. and tried mtdblock2 also.. still won't let me push!]
[edit2 - unsecured the shell and mounted as rw... still won't let me push!!.. saying permission denied!]
To be honest I havent used just straight up adb in a while other than zipaligning, I usually use x10 mod tool or xrecovery zips lately. They have been a reliable and quick. So my manual commands are rusty at best.. Would you want to try one of the other ways maybe? Or I'm sure someone else will know why push isnt working...
Sent from my X10a using XDA App
Thanks Aydee tried x10 mod tool last night - was getting the same error - seems the phone isn't properly unsecured... will try a few different things later.. if anyone else has other ideas.. I'd appreciate it!
Could you post a copy of the apk? You are on .435 right?
Sent from my X10a using XDA App
im_iceman said:
Hi Aydee - Thanks for your help with this so far!!.. I've done a nandroid backup on the x10 and trying to ADB push the file - it won't let me - says "permission denied".. I tried ADB Remount and shell commands...
$ adb shell
$ su
$ mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
both not giving me r/w access...
X10 is rooted and busybox installed....
What am I doing wrong?!
[edit - got the su working in shell.. and tried mtdblock2 also.. still won't let me push!]
[edit2 - unsecured the shell and mounted as rw... still won't let me push!!.. saying permission denied!]
Click to expand...
Click to collapse
It looks like it didn't get the su permission. Check your phone after typing su. If you want i can make a zip to flash.
Hi - Yeah it got the SU ok.. don't really know why it wasn't working - Think it may be to do with the way I was using ADB push - I was trying to push the file directly into the system or framework folders.. x10 mod tool pushed it to a "SD" folder first then ran another shell command to replace it in the framework folder.. don't really know enough about it !!.. anyway.. got it working via x10modtool.. just need to figure out how to do the same now for the phone and phonebook.. presume it's a PNG within those individual apps?
When making a ZIP.. does it need to be a complete system image or can you just zip the framework-res file on it's own and zip that via xrecovery?
Cheers!
im_iceman said:
Hi - Yeah it got the SU ok.. don't really know why it wasn't working - Think it may be to do with the way I was using ADB push - I was trying to push the file directly into the system or framework folders.. x10 mod tool pushed it to a "SD" folder first then ran another shell command to replace it in the framework folder.. don't really know enough about it !!.. anyway.. got it working via x10modtool.. just need to figure out how to do the same now for the phone and phonebook.. presume it's a PNG within those individual apps?
When making a ZIP.. does it need to be a complete system image or can you just zip the framework-res file on it's own and zip that via xrecovery?
Cheers!
Click to expand...
Click to collapse
Just drag the framework-res.apk into the framework folder without extracting it. After that just flash it.
so presumably I would need to either ADB pull the whole FRAMEWORK folder first? or take a copy using a file manager (AKA root explorer etc)..?
im_iceman said:
so presumably I would need to either ADB pull the whole FRAMEWORK folder first? or take a copy using a file manager (AKA root explorer etc)..?
Click to expand...
Click to collapse
Just the modified apk into the framework folder of the zip.
Sent from my X10project using XDA App
Nah m8 he said he got the framework-res working he needs to do the same for phone & phonebook. They are both in system/app.
Sent from my X10a using XDA App

[Q] Installing System Apps

Hi! I searched the forums, but didn't see any answers regarding to this.
I'm trying to install the moded versions of SMS and Phone/Contact apps found in Cyanogenmod ROM over stock 2.3.4.
What I did was to extract Contacts.apk, Mms.apk, and Phone.apk from one of CM releases and copied the APK files to /System/Apps/ via Root Explorer (set it from R/W to R/O) and rebooted the phone, but there was no change.
I then tried to install them (from the same /System/Apps/ location) through Root Explorer, but it doesn't let.
Any help would be much appreciated.
If you are trying this you need to check/change permission on each app...the phone.apk will not work though I've tried and got force closes. The dialer and mms apks will work though. The best way to do this is to push via adb. If you don't have sdk and knowledge of the basic adb and shell commands I would highly reccomend becoming familiar with them.
Sent from my Nexus S 4G using Tapatalk
I have sdk and worked with adb before to root my phone. I'll do some research on how to install apps via adb.
Thank you.
umbrae said:
I have sdk and worked with adb before to root my phone. I'll do some research on how to install apps via adb.
Thank you.
Click to expand...
Click to collapse
Just put the apps on your tool folder and enter the following commands....
adb push "your.apk" system/app
Sent from my Nexus S 4G using Tapatalk
Thanks again. I did that and got confirmation that the files were copied, but the new Mms, for example, wasn't installed.
I tried using "install" command after, but it wouldn't let me. I got a message saying that the file already exists.
I changed the permission and everything, too.
Any ideas?
umbrae said:
Thanks again. I did that and got confirmation that the files were copied, but the new Mms, for example, wasn't installed.
I tried using "install" command after, but it wouldn't let me. I got a message saying that the file already exists.
I changed the permission and everything, too.
Any ideas?
Click to expand...
Click to collapse
That's odd...I usually don't have to change permissions when I push an app. What version of the cm7 mms apk are you using? I used it from the stable 7
Sent from my Nexus S 4G using Tapatalk
sunder74 said:
That's odd...I usually don't have to change permissions when I push an app. What version of the cm7 mms apk are you using? I used it from the stable 7
Click to expand...
Click to collapse
I was using Nighties, but I'll try the latest stable 7. Downloading now.
Just to clarify what I did:
First, used the "adb push" method you suggested and the apk files were copied to system/app. I rebooted, but nothing had changed. I then tried to install the copied files via Root Explorer, but it wouldn't let me. I changed R/O and then Permissions, but still couldn't install.
Then I tried "adb install", but it said file already exists. I changed R/O then Permissions, but still couldn't.
After that, I deleted Mms.apk and Contacts.apk and tried all the methods described above again, but still nothing. The apps weren't installed and I kept getting FC.
Lastly, I manually copied the files again via Root Explorer (changed R/O then changed Permission), but still no change and couldn't install.
Hopefully CM 7 packages I'm downloading would work.

[MOD] Black & white Emoji on system font

If you ever wondering what your iPhone/Mac friends were sending you, wonder no more.
To install: You need root! Download the .ZIP attached to this thread. Make a backup first of the following fonts under your /system/fonts folder! If you don't find some of these in your /system/fonts folder, don't worry.
DroidSansArabic.ttf
DroidSansFallback.ttf
DroidSansHebrew.ttf
DroidSansThai.ttf
gcsh00d-hkscs.ttf
Then, extract the zip to the /system/fonts folder and replace all fonts it tells you to replace. That's it!
For those of you who have your phone plugged in to your computer and prefer a command line, extract the ZIP to an ADB folder. Open a command prompt in the directory and then type:
adb shell
su
mount -o remount rw /system
chmod 777 /system/fonts
adb push DroidSansArabic.ttf /system/fonts/
adb push DroidSansFallback.ttf /system/fonts/
adb push DroidSansHebrew.ttf /system/fonts/
adb push DroidSansThai.ttf /system/fonts/
adb push gcsh00d-hkscs.ttf /system/fonts/
I'm thinking of modding some other system fonts with these files I found, I will update this thread if I ever do. Enjoy.
Nice. Thank you so much, this kicks all sorts of ass.
This is amazing.
Does this replace the stock smileys or is there a way for us to insert them?
Mms.apk with Emoji support
I lifted the MMS apk from AOKP, which is modified from cm9. Has full emoji support baked right in.
https://www.dropbox.com/s/0btrygelu5004f2/Mms.apk
You have to go in to settings and enable emoji support.
how do i install it. when i try to it says an existing package by the same name with a conflicting signature is already installed
Darealshht said:
how do i install it. when i try to it says an existing package by the same name with a conflicting signature is already installed
Click to expand...
Click to collapse
I used es file explorer. The messaging app is stored in /system/app
Just backup the old messaging app by renaming the file extension to .apk.bak or something, and then drop the mms.apk in to the /system/app folder. Make sure permissions are set to -rw-rw-rw. Reboot the phone when finished.
Edit: You'll need to have root access, and have "Root Explorer" and "Mount File System" enabled in es file manager.
thanks works well
Thanks! I tried changing the fonts but it did not change anything for me. I replaced the MMS.apk and it looks great.
im having problems sending MMS when i try it just doesnt even show up it just disappears as soon as i hit send
Darealshht said:
im having problems sending MMS when i try it just doesnt even show up it just disappears as soon as i hit send
Click to expand...
Click to collapse
Blast, you're right. I hadn't tried sending an MMS yet but the same thing happens when I try. I'll mess around with it a bit when I'm off work and see what I can do.
Edit: I didn't do anything, and it seems to be working now. I sent a couple of test MMS messages, and they just straight up disappeared...but then when the person I sent them to replied they all just magically reappeared. Now it seems to be working fine.
Mine is working fine too. Try reinstalling the app.
Sent from my HTC One X using Tapatalk 2
its still not working for me after the person replied :/ did u reboot your phone?
---------- Post added at 01:54 PM ---------- Previous post was at 01:47 PM ----------
reinstalled rebooted and still nothing :/
There was a second file called message with an extension ".odex" I moved that one out as well. I reboot the phone too.
After putting the new mms.apk in make sure you reboot the phone. Good luck.
Sent from my HTC One X using Tapatalk 2
still not working idk what else to do
Can you send regular sms messages? If not try downloading tha apk again. Force stop the app and clean cache.
Sent from my HTC One X using Tapatalk 2
Darealshht said:
still not working idk what else to do
Click to expand...
Click to collapse
Try this - it didn't work for me until I tried inserting a picture from an app other than the gallery. I tried sending two pictures from the gallery, neither of them appeared. I then tried attaching a image using ES file explorer instead, and that one didn't appear immediately, but it did show up after a moment. After that, I had no trouble attaching an image from the gallery app.
Just wanted to say thanks to you guys. I got it to work after reinstalling it thru the download manager. I have a question. There's a software update for my phone from at&t but when I try to install it it says there was a problem with my software. I'm new to android so is it because I'm rooted? If so can I unroot to upgrade?
Do not update, unless you do not want root again.... Well at least for a while.
Sent from my HTC One X using Tapatalk 2
Either way I can't because it won't update for someone reason
I have follow all the steps and now can type emoji but there is another problem: My HTC One X can't display traditional chinese and korean character Could you help me with a solution?

Install Asus Keyboard on CM10

Hi guys, I wanted to ask you if someone can help me installing the Asus Keyboard app on my TF300T with CM10. I have the Keyboard.apk , but it gives an error when installing... Any help?
Did you have the odex files too? And you need to manual place into /system/app. Normall install will not work.
Sent from my GALAXY Cooper
geldebanho said:
Hi guys, I wanted to ask you if someone can help me installing the Asus Keyboard app on my TF300T with CM10. I have the Keyboard.apk , but it gives an error when installing... Any help?
Click to expand...
Click to collapse
You will find the Asus Keyboard apk and odex file in the zip file
Just push it on /system/app
Ok, I'll try it later. Thanks!
It didn't work... Any ideas? :s
geldebanho said:
It didn't work... Any ideas? :s
Click to expand...
Click to collapse
Describe? It didn't work.
After placing each file in /system/apps ( I always set permissions as well 644). Reboot. you went to settings/Language & Input, placed a check beside it/Clicked Default and selected it.
If you pushed it with adb permissions may be correct already.
geldebanho said:
It didn't work... Any ideas? :s
Click to expand...
Click to collapse
It's the native keyboard from Asus with Odex file.
You have 2 solutions for push these files on your system, but you need root rights:
- 1st: by ADB
adb push XXX YYY : copy the file XXXX from your PC on to your system/app YYY of your phone
- 2nd: by an APK as Root explorer, Es File Explorer etc (with root rights)
just copy and paste thes 2 files to your SDcard and copy and paste again to the system/app folder.
After don't forget to reboot your device.
And finally you went to settings/Language and Input, placed a check beside it/Clicked Default and selected it.
philos64 said:
It's the native keyboard from Asus with Odex file.
You have 2 solutions for push these files on your system, but you need root rights:
- 1st: by ADB
adb push XXX YYY : copy the file XXXX from your PC on to your system/app YYY of your phone
- 2nd: by an APK as Root explorer, Es File Explorer etc (with root rights)
just copy and paste thes 2 files to your SDcard and copy and paste again to the system/app folder.
After don't forget to reboot your device.
And finally you went to settings/Language and Input, placed a check beside it/Clicked Default and selected it.
Click to expand...
Click to collapse
+1
philos64 said:
It's the native keyboard from Asus with Odex file.
You have 2 solutions for push these files on your system, but you need root rights:
- 1st: by ADB
adb push XXX YYY : copy the file XXXX from your PC on to your system/app YYY of your phone
- 2nd: by an APK as Root explorer, Es File Explorer etc (with root rights)
just copy and paste thes 2 files to your SDcard and copy and paste again to the system/app folder.
After don't forget to reboot your device.
And finally you went to settings/Language and Input, placed a check beside it/Clicked Default and selected it.
Click to expand...
Click to collapse
I did the 2nd method right from the beginning - I even set permissions for the files. The problem is that the settings thing stops responding when I try to open it with the files inside system/apps ...
geldebanho said:
I did the 2nd method right from the beginning - I even set permissions for the files. The problem is that the settings thing stops responding when I try to open it with the files inside system/apps ...
Click to expand...
Click to collapse
Just reboot when your copy/paste is done
No good... I did everything, copied the files to system/app with root explorer, rebooted, and the keyboard isn't even listed on the settings page...
geldebanho said:
No good... I did everything, copied the files to system/app with root explorer, rebooted, and the keyboard isn't even listed on the settings page...
Click to expand...
Click to collapse
OK I'll try to duplicate your issue and report back. Which cm10 rom are you using?
I chose cm10 nightlies and I can't get a proper install either, I'm looking into why.
I'm using the 09-11 nightly.
geldebanho said:
I'm using the 09-11 nightly.
Click to expand...
Click to collapse
Thanks I am working on it.
I deodexed and that failed to show installed.
Made a flash zip and that failed to show installed.
Now I'm really curious.
I need to flash stock rom and play a little then come back to cm10.
I'll report when I have more info.
I can't make it work no matter what I try, I'm sorry. If I think of anything else I'll reply here.
Maybe they are some missing librares they are in /system/lib/ ? Check the logcat, it should what is missing.
Wysyłane z mojego ASUS Transformer Pad TF300T za pomocą Tapatalk 2
Thanks I'm looking into that now. I'll reflash stock and try to get a better idea what might be missing. I see where it fails and why but haven't been able to relate that to a lib or config yet.
Thanks for the help!
When I do something like this I don't always get it fixed but I certainly learn new things as I go.
I'm not making any progress on this problem, sorry but I'm finished unless something else turns up soon.
Maybe someone else can lend a hand.
I will flash CM next days, as I already unlocked bootloader. Myabe I can find out what is missing, but try to add all the apks from this screen, it from stock.
Sent from my unlocked ASUS TF300T

Categories

Resources