Cannot move an app to the SD card
遇到一個使用者需求,想要將 APP移至SD卡,
這件事,我還真是第一次知道,原來Android有這種功能。
參考文章
https://axiang.cc/archives/16666
但程式端要怎樣才能允許對方能夠移至SD卡呢?
根據偉大的StackOverflow
http://stackoverflow.com/questions/11723387/cannot-move-an-app-to-the-sd-card
只要這樣設定
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="preferExternal"
package="your.package.name"
android:versionCode="1"
android:versionName="1.0" >
加上
android:installLocation="preferExternal"
就可以允許移至外部。
先留做筆記,還未實作。
參考官方文件
https://developer.android.com/guide/topics/data/install-location.html
APP移置SD卡教學
https://axiang.cc/archives/16666