Android真机测试 INSTALL_FAILED_INSUFFICIENT_STORAGE 解决方法[转]

方法一:

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

[html]view plaincopy

  1. < manifest   xmlns:android = "http://schemas.android.com/apk/res/android"   
  2.      package = "com.app.flashlight"   
  3.      android:installLocation = "preferExternal"   
  4.      android:versionCode = "1"   
  5.      android:versionName = "1.0"   >

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

其他情况:

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

进入到模拟器中,点击 settings->applications->mange 
applications-> select the application->select “uninstall” ,将启动的软件删除掉,下次就可以成功启动。