标签:android style code http ext color
1、用Eclipse安装APP程序时,报Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE错误,也就是说内存不够用引起的,解决办法有如下两种:
a、把手机内的没用安装包清掉一些,或者卸载一些没用的APP,腾出足够的内存,然后在进行安装;
b、直接在AndroidMainfest.xml文件里配置,即<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="preferExternal" package="XXX" android:versionCode="XXX" android:versionName="XXX">
红色标记的属性即是要添加的东西;
标签:android style code http ext color
原文地址:http://www.cnblogs.com/fly-allblue/p/3791016.html