标签:
今天用真机测试,出现了下面的情况 , 网上找了好多情况 , 都感觉比较费事,没什么效果,报错依旧,
[2013-08-06 16:31:04 - Flashlight] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE
[2013-08-06 16:31:04 - Flashlight] Please check logcat output for more details.
[2013-08-06 16:31:04 - Flashlight] Launch canceled!
解决方法一:
试试修改一下manifest文件 :添加一句: android:installLocation="preferExternal"
<span style="font-size:12px;"><manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.app.flashlight"
android:installLocation="preferExternal"
android:versionCode="1"
android:versionName="1.0" ></span>
即修改下安装位置 就OK了.
其他情况:
使用模拟器测试的,则可以试一试:
进入到模拟器中,点击settings->applications->mange
applications-> select the application->select “uninstall”,将启动的软件删除掉,下次就可以成功启动。
INSTALL_FAILED_INSUFFICIENT_STORAGE 的解决方法
标签:
原文地址:http://www.cnblogs.com/vijozsoft/p/4832285.html