如何在设备的外部存储上安装应用程序。我们需要在android的manifest文件中写入哪些参数。
答案 0 :(得分:0)
添加此行
android:installLocation="preferExternal"
在您的清单中
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="preferExternal"
>
如果您声明“ preferExternal ”,则请求将您的应用程序安装在外部存储上,但系统不保证您的应用程序将安装在外部存储上。如果外部存储空间已满,系统会将其安装在内部存储器上。
有关详细信息,请参阅http://developer.android.com/guide/topics/data/install-location.html
答案 1 :(得分:0)
在应用程序清单文件中添加installLocatiion属性。
机器人:的installLocation =&#34; preferExternal&#34;