我正在按照本教程将应用程序移动到SD卡。
How to Install Android Apps to the SD Card by Default
但我的默认位置没有变化。并且我的手机内存已满,无法安装新应用程序。
答案 0 :(得分:15)
Android工具更新命令adb shell pm setInstallLocation 2
更改为adb shell pm set-install-location 2
后(请注意命令区分大小写)
可以创建更新的教程here。
答案 1 :(得分:5)
<强>机器人:的installLocation =&#34; preferExternal&#34; 强>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.fpm"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="preferExternal"
>