Android 真机调试时无法调试 INSTALL_FAILED_INSUFFICIENT_STOR

[2013-08-06 16:31:04 - Flashlight] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

试试修改一下manifest文件 :添加 一句:   android:installLocation="preferExternal"  

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

         package = "com.app.flashlight"   

         android:installLocation = "preferExternal"   

         android:versionCode = "1"   

         android:versionName = "1.0"   >

    即 修改下安装位置  就OK了. 


其他情况:

    使用模拟器测试的,则可以试一试:

    进入到模拟器中,点击 settings->applications->mange 

    applications-> select the application->select “uninstall” ,将启动的软件删除掉,下次就可以成功启动。


你可能感兴趣的:(真机调试)