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" >
时间: 2024-12-12 06:22:25