1

我正在按照本教程将应用程序移动到 sd 卡。

如何默认将 Android 应用程序安装到 SD 卡

但我的默认位置没有改变。我的手机内存已满,无法安装新应用。

4

2 回答 2

15

Android Tools Update 命令adb shell pm setInstallLocation 2更改为后adb shell pm set-install-location 2 (注意命令区分大小写)

更新的教程可以在这里建立。

于 2013-04-02T05:37:46.400 回答
5

android: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"
     >

参考

于 2013-04-02T05:39:13.007 回答