Android Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

Wednesday, November 21, 2012 4:10 PM 0 Comments

Error message

Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

Fix it by

add this to manifest.xml file

android:installLocation="preferExternal"

just like this


<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.kittinan.blog"
    android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
    android:versionCode="1"
    android:versionName="1.0"
    android:installLocation="preferExternal" >



0 comments: