Android Studio支持将应用移至SD卡

时间:2018-10-09 16:44:01

标签: android

将应用程序移至SD卡存储区时遇到一些问题, 我在AndroidManifest.xml

中进行了更改
android.installLocation="auto"

尽管我的SD卡上有20 GB的可用空间,但是当我尝试将应用程序移动到SD卡“存储空间不足”时,仍然出现错误。

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.example.mouad.kanjiapp"

    android:installLocation="auto"

    android:versionCode="2" android:versionName="1.2">

    <uses-permission android:name="android.permission.INTERNET" />

尝试将应用移至SD卡时出错:

  

Error when trying to move the app to the SD card

1 个答案:

答案 0 :(得分:0)

还有android:installLocation="preferExternal",它更愿意安装到SD。

另请参阅documentation,以了解不应安装到外部存储器的应用。

另外,当通过USB电缆安装SD卡时,也会出现该错误。