0

我在这里遇到设备中没有足够位置的问题。我一直在这里寻找这个问题的答案,发现很多答案,这是不可接受的,因为:
1.他们都在谈论模拟器,在我的情况下它是真正的测试设备
2.社区建议增加存储,所以不会再有这样的消息了——我所做的是我删除了设备中的一些应用程序/游戏,所以它有所帮助,但是在从 eclipse 直接运行到设备几次之后,消息又开始出现了。

在开始应用程序(apk)上传到设备然后安装时,我假设eclipse无法删除以前的应用程序(apk),所以它会不断复制新的应用程序而不删除旧的应用程序。有没有办法清理那个apks,或者我的想法完全错误。
帮助。
谢谢,如果答案在这里的某个地方而我没有找到它,我很抱歉。

4

2 回答 2

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">

通过这种方式解决了

于 2013-03-28T05:22:06.033 回答
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.
于 2014-12-02T11:53:32.283 回答