如何通过默认的Android应用程序安装到SD卡[关闭](How to Install Androi

2019-08-18 23:13发布

我下面这个教程用于移动应用程序到SD卡。

如何安装Android应用程序到系统默认的SD卡

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

Answer 1:

Android的工具后更新命令adb shell pm setInstallLocation 2已更改为adb shell pm set-install-location 2 (注意命令是区分大小写)

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



Answer 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



文章来源: How to Install Android Apps to the SD Card by Default [closed]
标签: android adb