允許apk安裝在sd卡上的設定『AndroidManifest.xml 中,在 的標籤上』
允許apk安裝在sd卡上的設定『AndroidManifest.xml 中,在<manifest> </manifest>的標籤上』
加入一個android:installLocation的參數,本例為”auto”
<manifest xmlns:android=”http://schemas.android.com/apk/res/android” package=”com.J_Test.TestProject” android:versionCode=”1″ android:versionName=”1.0″ android:installLocation=”auto”> |