我下面这个教程用于移动应用程序到SD卡。
如何安装Android应用程序到系统默认的SD卡
但我的默认位置没有改变。 ,我的手机内存已满,无法安装新的应用程序。
我下面这个教程用于移动应用程序到SD卡。
如何安装Android应用程序到系统默认的SD卡
但我的默认位置没有改变。 ,我的手机内存已满,无法安装新的应用程序。
Android的工具后更新命令adb shell pm setInstallLocation 2
已更改为adb shell pm set-install-location 2
(注意命令是区分大小写)
更新教程可以建立在这里 。
安卓的installLocation = “preferExternal”
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.fpm"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="preferExternal"
>
Refrence