在Android上跑时,报错了:Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE
最后发现了解决的方法:
在项目文件下:AndroidManifest.xml文件中增加一行代价就行了。
如:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="xxx"
android:installLocation="preferExternal" ------增加这行代码!
android:versionCode="1"
android:versionName="1.0" >
android:i