我遇到的情况是设备中没有足够的位置问题。我一直在寻找这个问题的答案,并找到了很多答案,这是不可接受的,因为:
他们都在谈论模拟器,在我的例子中是真正的测试设备
2.社区建议增加存储空间,因此不再有这样的消息了 - 我所做的是我在设备中删除了几个应用程序/游戏,所以它有所帮助,但是从eclipse直接运行到设备后,消息开始变为再次出现。
在开始app(apk)上传到设备然后安装,我假设eclipse无法删除以前的应用程序(apk),所以它不断复制新的那些而不删除旧的。有什么方法可以清理这些问题,或者我认为完全错误
帮助。
谢谢,很抱歉,如果答案在这里某处,我没有找到它。
答案 0 :(得分:2)
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.packagename.appname"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="preferExternal">
通过这种方式解决了
答案 1 :(得分:0)
You need to do two things after which this error will be resolved.
1. In your AndroidManifest.xml file add android:installLocation="preferExternal" within your manifest tag.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.packagename.appname"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="preferExternal">
2. More importantly, clear the cache data in your device. Goto settings -> storage -> click on cached data. This will clear the cache and free the space.
3. Reconnect your device, clean your project and again run it on the device. The project will now run on your device.