android真机调试报错Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE 的解决办法

android真机调试的时候,app在真机上闪退,LogCat报错:

Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE
 Please check logcat output for more details.
 Launch canceled!


解决办法:

修改proj.android/AndroidManifest.xml,增加红色的一行:

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

      package="com.xxx.xxx"

      android:installLocation="preferExternal"

      android:versionCode="1"

      android:versionName="1.0">


你可能感兴趣的:(android真机调试报错Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE 的解决办法)