I have samsung galaxy 3 (I5801). I have downloaded many APK files from internet. I have no problem in installing APK files. By default when APK file is selected it installs itself to phone memory. I want it to install application on SDCARD. I have made my phone memory full.
So my queries are
- How to install APK on SDCARD? APK should install itself to SDCARD.
- How to move already installed application to SDCARD from phone memory?
mv /source/path /destination/path
to move files and useln -s /actual/file/path /symbolic/link
to create symbolic link (the-s
stands for symbolic/soft link, if you do not specify this, you'll be creating a hard link, which may not cross partition boundary). Note that you need root to modify apk files stored in /data/app/ and app data in /data/data/. If you're not familiar withln
ormv
, it's a good idea to play around with them in safe files before messing with the system. Make a backup! Do this as a last resort only. – Lie Ryan Mar 29 '11 at 09:10