silverhack
New Member
The new Kangerade scripts don't have the apps2sd options, how do I change the apps2sd settings now?? Thanks...
You can use a terminal app to run the apps2sd scripts.
Auto mode / let the phone decide install location: a2sdauto (type that into the terminal shell and hit enter)
Install any new apps to sd: a2sdon (type that into the terminal shell and hit enter)
Install any new apps to phone memory: a2sdoff (type that into the terminal shell and hit enter)
These scripts basically just execute these commands for you, which you could also type in manually:
$ su
# cd /system/bin
# sh pm setInstallLocation 2 (same as a2sdon)
# sh pm setInstallLocation 1 (same as a2sdoff)
# sh pm setInstallLocation 0 (same as a2sdauto)
To see what the current install location is:
$ su
# cd /system/bin
# sh pm getInstallLocation
Hope that helps!