僅記錄個人歷程與心得!!!
學習Android一個月後終於開發兩個APP,但是開發好的程式我安裝後卻無法選將資料搬動到SD.
解決方案:
在AndroidManifest.xml中加入紅色字的部分
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto"
package=...
...
文章標籤
全站熱搜
僅記錄個人歷程與心得!!!
學習Android一個月後終於開發兩個APP,但是開發好的程式我安裝後卻無法選將資料搬動到SD.
解決方案:
在AndroidManifest.xml中加入紅色字的部分
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto"
package=...
...