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

时间:2013-04-02 05:35:42

标签: android adb

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

How to Install Android Apps to the SD Card by Default

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

2 个答案:

答案 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"
     >

Refrence