eclipse 真机调试报Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE
[Please check logcat output for more details.
Launch canceled! 错误
解决办法:
在配置文件:AndroidManifest.xml加入如下代码:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.demo"
android:versionCode="1"
android:installLocation="auto"//加上这就ok
android:versionName="1.0" >
eclipse 真机调试报Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE Please chec...错误
原文:http://blog.csdn.net/u014649598/article/details/42968573