visited 13 states (5.77%)
Create your own visited map of The World or Triposo world travel guide for Android

2014-12-04

Android開發中Eclipse 出現 INSTALL_FAILED_INSUFFICIENT_STORAGE的解決方式

在 Eclipse 開發 Android 時出現以下的錯誤

[2014-xx-xx 19:09:29 – xxx] Installation error:  INSTALL_FAILED_INSUFFICIENT_STORAGE

[2014-xx-xx 19:09:29 – xxx] Please check logcat output for more details.

[2014-xx-xx 19:09:29 – xxx] Launch canceled!

問題是出在APK無法安裝在手機上執行

解決方法有兩種

1.到 AndroidManifest.xml 添加下面的代碼,強迫將 apk 安裝在 sd 卡上

android:installLocation="preferExternal"


<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="tw.example"
    android:installLocation="preferExternal"
    android:versionCode="1"
    android:versionName="1.0" >
2. 移除之前的程式 重新編譯 android APK 再執行

這些也是同標籤文章 :

沒有留言: