INSTALL_FAILED_INSUFFICIENT_STORAGE错误解决方法

在manifest里加上android:installLocation="preferExternal"即可

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="test.sam.jni"
    android:versionCode="1"
    android:versionName="1.0"
    android:installLocation="preferExternal" >

你可能感兴趣的:(INSTALL_FAILED_INSUFFICIENT_STORAGE错误解决方法)