Swype installation help - Galaxy S I9000 Themes and Apps

Noob question here....
I am trying to install the latest version of Swype (v2.15.56.14870)
I have an older version which came preinstalled on my SGS and therefore is a system application. Is there anyway i can install this newer version without having to root my phone?
Perhaps the "update.zip" in recovery mode..
I've tried putting the newer app on my phone, both external sd and internal sd then trying to install with Astro. I only get the option to "UnInstall" "Upgrade" or "Launch"
If i select upgrade a message popus up with, "This is a system application. Do you still want to replace it?"
I hit "OK" then "Install" ....a few seconds later phone states, "Application not installed"
I am starting to assume that rooting is the only way to install the newer version, given that it is a system application. However if anyone knows of a method without root then please advise on correct procedure.
Thank you.

I think with preinstalled swype you have a swype apk in /system/app (which is why you cannot uninstall) and there's a swype lib in /system/lib. If you had root I think you can just delete these and its gone.
After that you could install the new one normally.
Sent from my SAMSUNG-SGH-I897 using XDA App

Can you do it with ADB?

You will need to root your phone. It shouldn't be too hard to do. What phone do you have?
I don't think there's anyway around it without rooting.
What you would need to do is backup the built in Swype (Just in case anything goes wrong.) Delete the system files related to it which you would need root permissions to do. Then restart your phone. Install the new version of Swype.
I did this the other day since I got an invite to the Swype beta.

Related

[HOWTO] Install Latest WaveSecure in ROM

I found that [email protected]'s ROM had a good idea of adding WaveSecure to the system partition (preventing listing in the My Downloads part of market, and preventing uninstallation through normal means), but his version is slightly out of date now (latest version is 3.0.0.43)
As a result, I set about finding a means to install WaveSecure to ROM myself. Here are my findings for anyone interested in doing the same.
Install the latest version from the market (3.0.0.43 at this time). Now use adb pull to get it off the device onto your pc
Code:
adb pull /data/app/com.wsandroid.apk D:\com.wsandroid.apk
Now open Market back up from the menu, go to My Downloads, and choose Wavesecure Mobile Security Beta and uninstall it for just now (to get it off the data/A2SD location that normal apps are stored in) - thanks, my-space!
Then push the saved apk to the system partition after a remount (to make it read/write)
Code:
adb remount
Code:
adb push D:\com.wsandroid.apk /system/app/com.wsandroid.apk
Then set it all up as usual (will appear in apps list immediately)
and remount system as read only again
Code:
adb remount
And that seems to be it so far. Remember to change the D:\com.wsandroid.apk path to whatever you actually used.
Let me know if anyone finds any problems with this, but I've done it and, fingers crossed, it's worked OK for me.
Obviously, this is only for root users, and there are no guarantees for this.
Couple of questions that might need looked into -
- Do settings carry across after a wipe (as Paul claims Modaco's version does. I've never tried it so can't confirm)
- Is there any disadvantage to using this method? (I guess this is all Modaco's update.zip does, but I don't know)
you forgot to metion to uninstall wavesecure before it is pushed back into system....
my_space said:
you forgot to metion to uninstall wavesecure before it is pushed back into system....
Click to expand...
Click to collapse
Oops! Knew I'd forget something, as I always seem prone to do. Well spotted, and OP corrected.
Thanks
No worries I got a bit confused when i pushed it back onto the phone and was still in my downloads...
I've rooted my phone already but whenever i try to use the command adb remount I get "remount failed: operation not permitted". Suggestions?
I see more and more often, redundant threads.
What How-to will you post next time? How to change backlight settings?
You're pointlessly spamming the board.
I can't say i agree with the 'pointlessly spamming the board' comment, but i would have thought this would at least be better in the applications and themes subforum rather than in development.
Don't forget that an awful lot of android users (and more recently all HTC devices) are more and more 'newbs' and need stuff like this.
While this is good and provides info that people like that need (and myself cos i'm crap at adb and stuff like that so wouldn't have had a clue how to do this previously), maybe the development forum is not the best place for it....
I'm guessing one won't be notified via Market if there's an update available if you push an app to /system/app/, right?
usb0 said:
I'm guessing one won't be notified via Market if there's an update available if you push an app to /system/app/, right?
Click to expand...
Click to collapse
You won't be notified, correct
If anybody doesn't already know, WaveSecure have started hosting update.zip files. This means it's now easy to update your "baked-in" version of WaveSecure without much messing around.
https://www.wavesecure.com/installations/update.zip
Download the file, save it to your SD card, reboot into the recovery console and choose the option to apply an update.zip file.
Voila! Your version of WaveSecure will be updated to the very latest version
DJBenson said:
[...]
Click to expand...
Click to collapse
That's really awesome! Thanks for the tip!
Just a question of curiosity: If I push an app to /system/app/ and then issue the rm-command to remove its apk, won't there be lying a bunch of files associated with the program and with absolutely no function, since the app itself is removed? How do I know the name of these files and where they are located for removal?
I'm a bit confused by that question. My understanding (which may be incorrect but from what I've seen of the "guts of a ROM" appears to be the case) is that the applications reside in the apk files, they are not extracted. If you list the content of any of the app folders (/system/app, /data/app or /data/app-private) then all you get is a bunch of apk files (and some odex files). So when you 'push' an apk to the phone, that application is then "installed", when you rm/remove an application, you do so by removing the apk.
if you remove the apk you have left something in /data/dalvik-cache. wiping the dalvik-cache every now and then helps reclaiming that space, though it is not much.
the app settings and data are stored in /data/data, you could delete the files manually by checking their names (no idea if/what convention the names follow), imho not worth the trouble as it is only a few kb.
odex files aren't created if you don't do in a PITA process manually. don't worry about them, don't touch them, then you're good. odex files are only for system apps.
I bought a used phone and it had WaveSecure already installed. I couldn't find it in the applications list to uninstall, so I did a factory reset on the phone. The application was still there and it still didn't show up in the applications list.
I have the Superuser Permissions application, so someone must have rooted it.
Is there any way to uninstall this?
motomeup said:
I bought a used phone and it had WaveSecure already installed. I couldn't find it in the applications list to uninstall, so I did a factory reset on the phone. The application was still there and it still didn't show up in the applications list.
I have the Superuser Permissions application, so someone must have rooted it.
Is there any way to uninstall this?
Click to expand...
Click to collapse
""Just (re)flash a ROM................""
I just noticed that WaveSecure now points to this post for instructions to install as system application, and I am not sure that the update.zip maintained with them is up-to-date.
However, you can now select to download the .apk directly to your PC thus eliminating the first Market step in this guide.
strife242 said:
I just noticed that WaveSecure now points to this post for instructions to install as system application, and I am not sure that the update.zip maintained with them is up-to-date.
However, you can now select to download the .apk directly to your PC thus eliminating the first Market step in this guide.
Click to expand...
Click to collapse
I believe it is kept up to date, as VillainROM kitchen uses it as a source for the WaveSecure app (fetched each night to keep it up-to-date).
I've certainly never had any problems with it.
Excellent guide Pulser,... I should really reinstall Wavesecure now Im not using a MoDacO Custom ROM. Nice one bruv.
Found this to be helpful.
https://www.wavesecure.com/blog/how-to-make-wavesecure-hard-reset-proof.aspx
I just did a search in the Market fro 'wavesecure' and two things popped up WaveSecure and WaveSecure UninstallProtection Add-on which needs to be uninstalled before WaveSecure and if the add-on is uninstalled it is supposed to lock the phone. (all this is in the description I have yet to try)

Wow.

Hi all,
I have been a winmob user for over 5 years and i know pretty much everything about them. (see join date) Though 3 days ago i got a a8183 desire.
My god i have a lot to learn about Android. Winmob seemed so much simplier to pick apart with registry and custom roms.
Anyways i have been reading thread after thread for days yet i still have a couple of questions that i cannot get clear answers for.
I have a a8183 telstra desire running on optus. I have updated to the latest offical 2.2 ROM. (Everyone mentions OTA (over the air) though i downloaded it and installed thru windows).
So i would appreciate if someone could help me out with my questions/assumptions.
1. From what i have read you cannot r00t a froyo OS. Is that right? Though i have found an app z4root that will do it temporarily until reboot. Unrevoked doesnt seem to work.
2. To change system files you need not only root though you need the clockworkmod recovery part of the bootloader. (eg. to replace HOST file for adblocking).
3. You need permanent r00t to install the clockworkmod (so i cannot do this).
4. You cannot remove default ROM apps from your phone without the clockworkmod.
5. You need clockworkmod to install custom ROMs.
So from what i gather.. r00t is good. though really only cause it gets you the clockworkmod recovery which is where you can really hack it.
And to get this i need to downgrade to 2.1, r00t, clockwork then use a hacked rom for 2.2?
Your help is greatly appreciated.
hi sage, i too came from windows mobile so i know how you feel, lucky for me i jumped on the android bandwagon earlier with the htc hero, after i got bored with my HD1, anyway your wrong on quite a few points, so i'll point you in the right direction.
1) the latest version of unrevoked (www.unrevoked.com/recovery) is more than able to root the froyo roms, its a one click app and can root your device in minutes
2) to easly modify system files you need s-off (this is equivalent to HSPL on wm devices) after you have rooted, you need to search for alpharev, this is a linux live cd, you just burn it and boot it and it will security unlock your device.
3) when you download and run unrevoked, it will not only root your device but insatall the latest version of clockworkmod recovery. (just hold vol down and power when your device is off to access hboot, and choose recovery from the list) so unrevoked kills 2 birds with one stone
4) to remove the apps in the /system/ partition there are 2 ways, from recovery using adb, or if you flash the s-off mod, you can remove them directly from your device using a file manager.
5) yes you need clockworkmod or another custom recovery to install custom roms, but now you know how to do it, thats not a problem
Hi Sage,
If you're looking for an easier way to get rid of all the Telstra apps (more like a blob of links really ) on your phone you may want to try one of the stock HTC WWE ROMs. It's clean and you can flash it via exe, just like in WM. The latest RUU I believe is the 2.29.405.2. Also, be aware of the risks of rooting your phone.
thanks for your response guys
Ok so i am now r00ted and running Leedroid's WWE ROM! (thank you!) it was actually pretty easy.
I think unrevoked was failing cause i was using a USB HUB.
OK so now i just want to remove some more of the default apps that come with it.
So i will try alpharev to security unlock my device. (is this permanent or if i reflash my rom it will come back?)
once i have done this i can then delete anything i like thru r00t explorer?
At this stage i am trying to just make some more room for apps. As a number of them wont move to SD Card.
A couple of last questions if i may. I have an new SD Card on order. Am i able to simply copy everything from my existing SD to my new and then swap it over in my phone and it will all be ok? Or do i need 'clone' it with some tool?
Where in the system paths do i remove 'shortcuts' within all apps? (or even simply rename them.)
Much appreciate your help. Android is growing on me. I especially love adb logcat!
ok.. i am now security off'd alpharev worked a treat.
i am now using r00t explorer to try and delete items from /system/app though they come up read-only so i cannot delete them
i take when i get to remove these the phone will have more stoage space for apps yeah?
i also still cannot find where the all apps shortcuts sit! (so i can rename/remove).
and lastly now i have the alpharev bootloader so gonna google how to change that
i did use the Leedroid apps2sd ROM. though most of my apps are still going to phone memory and i cant move them across.
Is there a fix for this? i guess once i work out how to delete these read-only files ill be ok anyway.
Unfortunately removing system apps wont give you more space to install apps, they are stored under a different partition, /system and /data are not on the same disk so you can save as much space on /system as you want but it won't affect /data at all.
With running out of space you have a few choices:
Go to settings..applications..then manage and move as many apps to SD as you can. This is fro-yo apps2sd, not all data is moved and not all apps can be moved, so you will probably run out of space again anyway.
Or
Reboot into recovery and partition your sdcard to create an ext partition, when you boot your rom ALL apps will be moved to the ext partition leaving lots of free space. Backup your sdcard before you partition it, you will lose all data.
Sage said:
ok.. i am now security off'd alpharev worked a treat.
1) i am now using r00t explorer to try and delete items from /system/app though they come up read-only so i cannot delete them
2) i take when i get to remove these the phone will have more stoage space for apps yeah?
3) i also still cannot find where the all apps shortcuts sit! (so i can rename/remove).
Click to expand...
Click to collapse
1) Press on Remount as R/O, this should allow you to delete/replace system stuff & ringtones, fonts...etc.
2)No, because apps install to data/apps & not system/apps.
3)You mean like the applicatiuon menu when we used to delete shortcuts or rename them? Hahaha man that was sooooooooooooo long time ago for me. Anyway, the applications installed are displayer & you can't hide them or rearrange them like Winmo. You might want to try Launcher Pro to hide apps in the apps drawer.
If you need more info, ask freely because 2 years ago I went through the same
mr.r9 said:
1) Press on Remount as R/O, this should allow you to delete/replace system stuff & ringtones, fonts...etc. Typo..You meant R/W
2)No, because apps install to data/apps & not system/apps.
3)You mean like the applicatiuon menu when we used to delete shortcuts or rename them? Hahaha man that was sooooooooooooo long time ago for me. Anyway, the applications installed are displayer & you can't hide them or rearrange them like Winmo. You might want to try Launcher Pro to hide apps in the apps drawer.
If you need more info, ask freely because 2 years ago I went through the same
Click to expand...
Click to collapse
Hmm..actually the new MTD partition table hack should be able to free space on the /system, adjusting partitions with less for /system and /cache and more for /data/app should give enough space..Though I'm not sure if he wants to try this right now, since it's considered an advanced task and maybe he'd like to get more accustomed to Android before attempting it? His wish though..
And well, there's yet another method to remove system apps, other than the other two methods. This is to modify the zip file of the custom rom to remove the actual apks from /system and reflashing it on top of the actual flash..
droidzone said:
And well, there's yet another method to remove system apps, other than the other two methods. This is to modify the zip file of the custom rom to remove the actual apks from /system and reflashing it on top of the actual flash..
Click to expand...
Click to collapse
Ohh yes indeed. OP, you can edit the zip before installing it to your device. You can remove/replace application in system/data and fonts...etc. Just remember to change signature verification to off in your recovery.
my god. i have spent days on this baby and im only barely scratching the surface
much appreciate all your help guys!
ok.. so its time to use app2sd i hear that app2sd+ is better though? (it moves more data to SD yeah? appcache?)
i only have 2Gb microsd right now so i might wait until i my 8GB arrives before i flash a new ROM and start again (again!)
i also noticed these online kitchens. http://cookmyrom.co.cc
which look great! tho they are still a version behind the leedroid i am using tho its a good way to get rid of some default apps.
i certainly like the idea of reparitioning the default disk though not quite ready for that yet especially when app2sd+ sounds much more straight forward.
i am dumbfounded that you cant remove 'shortcuts' from the All Apps! or even rename them!! my god. i would think that was first thing available on such an open source OS.
So i have now created a folder called "Folder" to reduce the clutter.. and now i guess i cant even rename it!?? and if i create another one its called "Folder" too!
lol.. this OS is so advanced yet some basic stuff seems to be overlooked.
I did try launcher pro though it removed my HTC Sense (which i like). So i might need to keep looking for an app to help organise my All Apps and my desktop (is desktop what its called?)
And just how do i add ringtones?
love your work guys thanks again.
Create a folder called Ringtones on the root of your SD to have...ringtones.
When you open a folder, long press on the header to rename it.
As for organizing, I stopped caring & started to use search, but maybe if you want you can try an app called folder organizer.
mr.r9 said:
Create a folder called Ringtones on the root of your SD to have...ringtones.
When you open a folder, long press on the header to rename it.
As for organizing, I stopped caring & started to use search, but maybe if you want you can try an app called folder organizer.
Click to expand...
Click to collapse
nice one thank you!
Sage said:
...So i have now created a folder called "Folder" to reduce the clutter.. and now i guess i cant even rename it!??...
Click to expand...
Click to collapse
Open the folder then hold where it says folder to change its name.
Ok. Now have app2sd working!
thanks to all of you. Beginning to love this android phone now. I feel sorry for all the people who use them as they come from the factory! Thank god for all the xda people who rip them to shreds and make them better
If i can have one last question. Any way to remap hardware buttons to start an app?
Like when you hold down the search button it launches Google Voice. I want it to launch a different app..
I did a search and found the hardware button remapper though it only does hardware to hardware.. not hardware to app
For Folders(Assuming you're using full HTC Sense), just open it and hold the title bar. Took me some time to figure out. You cannot easily rename the apps in "All apps", but you can remove them(Which is essentially uninstalling them) from Settings > Applications > Manage, unless they are system apps which need to be manually deleted either via S-OFF + Root explorer(OR something similar) or ADB + Custom recovery(Clockworkmod or Amon Ra).
For setting a custom ringtone, open the music app, select the music > Menu > Set as ringtone.
so no love on the hardware remap for apps?
Oh well i have done a lot of googling and it seems it cant be done (well at least not easily).
My last question is when you launch an app from a folder the folder stays open.. any way to force close or change its behaviour?
for those following this. I found the Tasker app remaps hardware buttons amongst doing amazing other things.
Still no love on closing folders though.
i ended up using tasker to create app widgets to replace the folders...
If you want app widgets, there's also "Desktop Visualizer".
In terms of killing of an app, have you tried "Settings -> apps settings -> development" then there's an option there for "stop apps via long press"?

How To Update Pre-Installed Swype to Swype Beta

I never really found a proper guide on how to update the Samsung Salaxy S pre-installed Swype and after figuring out how to do it i thought i'd share it with whoever needed it.
1) To update the pre-installed Swype to Swype beta you have to have root access or else this isn't going to work
2) Download "Root App Remover" and "Root Explorer" from the android market
3) Run Root App Remover (it will take a minute for it to initially scan the phone for system and user apps)
4) Using Root App Remover go to system apps scroll down to Swype tap it and press recycle, to completely uninstall it (which you have to do) press menu then "SystemApp Recycler" and uninstall it.
5) Run Root Explorer and press the "Mount R/W" button at the top if it isn't already selected, after that to go "system" folder then the "lib" folder and delete the file "libswypecore.so" (if it isn't there then go back into system and then back again)
6) After that go into the "data" folder then the "data" folder and delete "com.android.android.inputmethod" file (if its not there then quit root explorer)
7) After that go to the Swype Beta Website and register, go through all the various steps untill you've finished downloading and installing the Swype Installer.
8) Run Swype Installer and go through all the steps, then download and install the Swype Beta, generate the license using the installer and your done the newest Swype beta is now installed one you Samsung Galaxy S
Sorry if this guide is too long i just tried to explain it in detail. I Hope this guide helped you install the newest Swype beta, if you have any questions feel free to ask i'll get back to you as soon as possible.
ENJOY SWYPING!!!
Thanks for the guide. I used Titanium to remove the old version. After a reboot the new one installed just fine
Do u find the swype 3 beta much better than what came with our phones? I'm on jsd.
Sent from my GT-I9000 using Tapatalk
rewen said:
Thanks for the guide. I used Titanium to remove the old version. After a reboot the new one installed just fine
Click to expand...
Click to collapse
Same here, Titanium worked like a charm. A one-step approach...
Sent from my GT-I9000B using Tapatalk
What are the new features of beta?
Sent from my GT-I9000 using XDA Premium App
just titanium and stay safe
goughymachine said:
Do u find the swype 3 beta much better than what came with our phones? I'm on jsd.
Sent from my GT-I9000 using Tapatalk
Click to expand...
Click to collapse
It seems quite a bit faster and the horizontal word choice bar is so much better than the intrusive popup list. I like it a lot more than the stock version.
Well i have just found the answer to a question i posted a while back:
What happened to BlindType?
The answer is here. Swype now incorporates many of the features that BlindType had including the movable keyboard!
Thanks, your method worked...
michaelviper said:
I never really found a proper guide on how to update the Samsung Salaxy S pre-installed Swype and after figuring out how to do it i thought i'd share it with whoever needed it.
1) To update the pre-installed Swype to Swype beta you have to have root access or else this isn't going to work
2) Download "Root App Remover" and "Root Explorer" from the android market
3) Run Root App Remover (it will take a minute for it to initially scan the phone for system and user apps)
4) Using Root App Remover go to system apps scroll down to Swype tap it and press recycle, to completely uninstall it (which you have to do) press menu then "SystemApp Recycler" and uninstall it.
5) Run Root Explorer and press the "Mount R/W" button at the top if it isn't already selected, after that to go "system" folder then the "lib" folder and delete the file "libswypecore.so" (if it isn't there then go back into system and then back again)
6) After that go into the "data" folder then the "data" folder and delete "com.android.android.inputmethod" file (if its not there then quit root explorer)
7) After that go to the Swype Beta Website and register, go through all the various steps untill you've finished downloading and installing the Swype Installer.
8) Run Swype Installer and go through all the steps, then download and install the Swype Beta, generate the license using the installer and your done the newest Swype beta is now installed one you Samsung Galaxy S
Sorry if this guide is too long i just tried to explain it in detail. I Hope this guide helped you install the newest Swype beta, if you have any questions feel free to ask i'll get back to you as soon as possible.
ENJOY SWYPING!!!
Click to expand...
Click to collapse
The easiest way:
1) Gain root
2) Install Super Manager (from Market)
3) Enable root mode on Super Manger (under Settings)
4) Delete Swype (APK-Manager -> search for swype -> long press and delete),
5) Reboot
6) Install Swype Beta
goughymachine said:
Do u find the swype 3 beta much better than what came with our phones? I'm on jsd.
Sent from my GT-I9000 using Tapatalk
Click to expand...
Click to collapse
Yep, definitely worth updating to the new beta since it doesn't take much effort to uninstall the pre-installed outdated version of Swype that came with the phone anyways
Very nice, thanks
I didn't see either of the two apps you mention, but I downloaded and used "Root Uninstaller" and "Root Browser" from the Market instead, and they worked fine...just FYI. Thanks!
michaelviper said:
I never really found a proper guide on how to update the Samsung Salaxy S pre-installed Swype and after figuring out how to do it i thought i'd share it with whoever needed it.
1) To update the pre-installed Swype to Swype beta you have to have root access or else this isn't going to work
2) Download "Root App Remover" and "Root Explorer" from the android market
3) Run Root App Remover (it will take a minute for it to initially scan the phone for system and user apps)
4) Using Root App Remover go to system apps scroll down to Swype tap it and press recycle, to completely uninstall it (which you have to do) press menu then "SystemApp Recycler" and uninstall it.
5) Run Root Explorer and press the "Mount R/W" button at the top if it isn't already selected, after that to go "system" folder then the "lib" folder and delete the file "libswypecore.so" (if it isn't there then go back into system and then back again)
6) After that go into the "data" folder then the "data" folder and delete "com.android.android.inputmethod" file (if its not there then quit root explorer)
7) After that go to the Swype Beta Website and register, go through all the various steps untill you've finished downloading and installing the Swype Installer.
8) Run Swype Installer and go through all the steps, then download and install the Swype Beta, generate the license using the installer and your done the newest Swype beta is now installed one you Samsung Galaxy S
Sorry if this guide is too long i just tried to explain it in detail. I Hope this guide helped you install the newest Swype beta, if you have any questions feel free to ask i'll get back to you as soon as possible.
ENJOY SWYPING!!!
Click to expand...
Click to collapse
I would add a step for some folks -
6a) Boot into CWM recovery, clear cache, clear dalvik cache, reboot.
Without that step, my install of Swype beta would FC upon launch but after starting over and clearing the caches, I was able to install and use no problem.
Excellent.. I am able to SWYPE Now
i followed the Titanium backup root, I uninstalled using TB did not restart and ran the Swype installer and everything worked thereafter.
I installed the tablet version and in portrait mode, the keyboard is tiny although it doesn't affect swyping, is there a way to make it slightly larger?
Swype isnt Saved as standard input??? pls help
Hi, the installation worked fine, but i have to set up swype as standard input method after rebooting my device.
How can i fix that?

[Q] New to Android

Hi,
I just got my new SE Xperia Play phone and got it with android Gingerbread on it, I'm not completely familiar with this OS but following information that I've read I rooted my phone and it is working fine, I did this cause I read that by doing this I would be able to remove and add apps to my phone as I became a Super User on the Linux side of it. Now my questions is, How can I do this? I've tried to find like an step by step add and remove apps on my phone with no luck. Also I'd like to get some information on what can I do and what I can't (or shouldn't do) with my super user rights ( i found this but not sure how to add this titanium backup on my phone http://forum.xda-developers.com/showthread.php?t=1046699).
All help will be greatly appreciated.
Regards,
Btts.
you can delete any apps including system apps by using TITANIUM BACKUP.
once you've installed it and run it click on the backup/restore tab at the top then select whatever app you want to remove (system apps inluded) click that app and there will be an uninstall option.
BE CAREFUL WHAT YOU DELETE!
Hope this helps
You have to download Titanium Backup from the market
oh ok I get it, so it is available through the android market.. now that is for the Uninstall stuff part (thanks to both) now in order to get stuff installed into the phone is it there an option for that or can I do it using the linux terminal that is installed on the phone?
Thanks for all the help
OK, I have been where you are, and maybe this VERY brief summary will get you started.
1. Root - you did that.
2. Download and install the CWM for locked bootloaders from this link here.
3. Follow the instructions to power off, then power on and press down on the Volume Down key to enter the recovery mode. Then go to the Backup/Restore menu and backup the phone. This creates a Nandroid, or image of the phone so you can put it back to rooted stock if you mess something up.
4. Download and install Titanium Backup from the App Market. You can use this to uninstall any bloatware, including System files, but use with caution so you won't need to use your Nandroid! There is a safe list thread here that will give you some help in what you can remove.
5. Apps for Android usually come from the Android Market, or another market that hosts Android apps like Amazon AppMarket, etc. So any program you want to install will generally need to come from there. (Yes, I know there are some apps around that some Joe Ubertech wrote, but in general, you will want to get apps from the Market or a Vendor site, like Gameloft or EA.)
6. Use an App2SD program to move as many apps to your SD Card as are able to go. This frees up internal storage so you can run smoothly and have a lot of apps too. I like Droidsail Super App2SD (ROOT) because it lets you select a group of apps at one time to move. Do NOT move to SD any app that is accessed through a widget, or any replacement launcher program.
7. Be aware that Programs marked as System files cannot be moved to SD. However, some of them, like the preinstalled games, GMail, Youtube, etc, are also found in the Market. You can either delete them and reinstall them from the Market, or use a program like Root Explorer to manually move these to a folder on the SD card. Then reboot your phone, and you can reinstall them as user apps and be able to move them to SD as well.
8. Read. Read, read, read, READ everything you can get your hands on here in xda. It has been the best source of info for the Xperia Play.
I hope this helps you get going. Have fun, and if you run into trouble, someone here will usually be able to help you get going again.
Cheers!
netizenmt said:
OK, I have been where you are, and maybe this VERY brief summary will get you started.
1. Root - you did that.
2. Download and install the CWM for locked bootloaders from this link here.
3. Follow the instructions to power off, then power on and press down on the Volume Down key to enter the recovery mode. Then go to the Backup/Restore menu and backup the phone. This creates a Nandroid, or image of the phone so you can put it back to rooted stock if you mess something up.
4. Download and install Titanium Backup from the App Market. You can use this to uninstall any bloatware, including System files, but use with caution so you won't need to use your Nandroid! There is a safe list thread here that will give you some help in what you can remove.
5. Apps for Android usually come from the Android Market, or another market that hosts Android apps like Amazon AppMarket, etc. So any program you want to install will generally need to come from there. (Yes, I know there are some apps around that some Joe Ubertech wrote, but in general, you will want to get apps from the Market or a Vendor site, like Gameloft or EA.)
6. Use an App2SD program to move as many apps to your SD Card as are able to go. This frees up internal storage so you can run smoothly and have a lot of apps too. I like Droidsail Super App2SD (ROOT) because it lets you select a group of apps at one time to move. Do NOT move to SD any app that is accessed through a widget, or any replacement launcher program.
7. Be aware that Programs marked as System files cannot be moved to SD. However, some of them, like the preinstalled games, GMail, Youtube, etc, are also found in the Market. You can either delete them and reinstall them from the Market, or use a program like Root Explorer to manually move these to a folder on the SD card. Then reboot your phone, and you can reinstall them as user apps and be able to move them to SD as well.
8. Read. Read, read, read, READ everything you can get your hands on here in xda. It has been the best source of info for the Xperia Play.
I hope this helps you get going. Have fun, and if you run into trouble, someone here will usually be able to help you get going again.
Cheers!
Click to expand...
Click to collapse
awesome thanks for the information
Also, grab KeiranFTW's tweak package in the dev forum. Best thing you could do to your phone.
Sent from my R800x using xda premium
Trygon said:
Also, grab KeiranFTW's tweak package in the dev forum. Best thing you could do to your phone.
Click to expand...
Click to collapse
here's the link
http://forum.xda-developers.com/showthread.php?t=1385236
University of Pi said:
here's the link
http://forum.xda-developers.com/showthread.php?t=1385236
Click to expand...
Click to collapse
thanks for the info guys, now I'm working on my other phone the Xperia Arc ^^, if a moderator wants to close this thread is alright
thanks to all

[Q] how can i restore system apk.

First off I'd like to start off by saying that I am kind of an idiot...with that said; I like to mess around with important files on my device(Acer a100) even though I have absolutely no clue what I'm doing.
Using titanium backup I uninstalled that download system apk. The one with the green icon and the white arrow pointing down. Now when I try to restore it through tit. Backup it will just freeze and keep saying that it is restoring and I have to finally force close titanium. I have also tried messing around with permissions in root explorer, fixing permissions in rom manager, navigating to system/app and installing it manually through a file explorer( get message install fail), and hard resetting.
The main problem is that everything I download will show in my notification bar and after I close/exit them they come back 5-30 min later. If I click on the download in my notification(not on the x) then my notification bar just closes. I can kinda fix this by turning my notifications off or cleaning data/cache on ?download storage? Apk/app.
Does anyone know of an easy fix for restoring this system apk. For there are no custom roms or recovery sources for this device that I have seen yet.
Thank-you, Robb
Get the system.apk file from the roms here
http://forum.xda-developers.com/showthread.php?t=1307046
i tried downloading those recovery files and twice they came back saying they were corrupted, is there any way someone can just upload the system file i need from their a100...its the downloads apk. the green icon with a white arrow pointing down
RobbandJenica said:
i tried downloading those recovery files and twice they came back saying they were corrupted, is there any way someone can just upload the system file i need from their a100...its the downloads apk. the green icon with a white arrow pointing down
Click to expand...
Click to collapse
PM me with your email address, I'll email you the apk from my A100, I'm still running the stock rom that I pulled it out of the box with.
You can download it straight to your tab from your email, beforee you do, get a file manager (like es file manager) from the market. You will be able to get to your downloads folder from there and install it.
ummmmm............ could you repeat that?
6stringandy said:
PM me with your email address, I'll email you the apk from my A100, I'm still running the stock rom that I pulled it out of the box with.
You can download it straight to your tab from your email, beforee you do, get a file manager (like es file manager) from the market. You will be able to get to your downloads folder from there and install it.
ummmmm............ could you repeat that?
Click to expand...
Click to collapse
He's got Root Explorer, that should do the trick.
To the OP: You are mounting the system partition R/W in Root Explorer when you try this, aren't you? Hate to ask a dumb question but.....
Yes I am hitting that button up top on root explorer changing it from r/w to r/o but I think some how I just got the wrong apk....after titanium wouldn't restore it I think I remember copying apk. From my phone (g2x) and attempting to restore those...dumb, I know I might of tried changing the names of the apk. Too,..like I say I f*** with s*** I have no business Fu****** with. I will p.m. my email now maybe I can get a screen shot of the system files if anyone feels up to it, so I can cross check proper name and sizes
How about just reinstalling the 3.2.1 update that is in the developer section. There should be no reason to factory reset since it is the same version. I have soft bricked mine a few times and I have just did the update again.
I even upgraded from whatever version the device shipped with to 3.2.1 without wiping the data.
A100 development section??? I see three a100 recovery downloads and one a101 recovery in our development section but when I download them i t says they were corrupted...if those are what your talking about...which one exactly should I use and what do I do with the file after words???
----sorry two that say a101 and two a100
So should I use file Id # 115,116,117,or 109
Use the one in this post. It is already decrypted. The ones in the frist post need to be decrypted using the Acer decryption tool. I have used the one I linked to probably 20 times. Once you run the update you will have to re-root the tablet.
thank-you all..recovered and fixed!!!
I was able to fix my problem by using the recovery update zips. But I want to thank everyone that helped, and remind people from experience to freeze unwanted system apps instead of uninstlling in titanium backup.u
Very important advice also is to search and read before starting new posts. I could have saved some time and headache just by doing that...the answers were just a couple paragraphs away the whole time.

Categories

Resources