HTC Wildfire 存储空间不足问题
我在我的 HTC Wildfire 上运行 Froyo。我的手机中有 17 MB 的可用存储空间。我尝试在手机上安装的 .apk 大小为 2.7MB,但出现了这个奇怪的安装错误:INSTALL_FAILED_INSUFFICIENT_STORAGE。我正在使用 Eclipse 并在我的设备上启用了调试。几分钟前,我能够使用相同的可用存储空间安装大小为 11 MB 的二进制文件。
I am running Froyo on my HTC Wildfire. I have 17 MB storage free in my phone. The .apk I'm trying to install on the phone is 2.7MB but I get this wierd Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE. I'm using Eclipse and have enabled debugging on my device. I was able to install binaries with the size of 11 MB with the same free storage space a few minutes ago.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我解决了这个问题,将其放入 AndroidManizest.xml 文件中:
android:installLocation="preferExternal"
就在
android:versionName="1.0"
标签中的
之后。希望其他人能从这个答案中受益。
这样,如果可能的话,apk 文件会安装在 SD 卡中。
I solved this problem putting this in the AndroidManifiest.xml file:
android:installLocation="preferExternal"
just after:
android:versionName="1.0"
in the tag.
Hope someone else benefits from this answer.
This way the apk file is installed if possible in sd card.
硬重置只能在短时间内起作用。然后,您的移动 HTC Wildfire 上的弹出顾问中将继续显示存储空间不足。尝试一下可以在市场上下载的历史记录橡皮擦。或任何其他缓存和 cookie 清理程序,请首先阅读说明并确保备份您的 Google 帐户上的所有手机数据。
Hard reset only works shortly.. then insufficent storage will continue to show on a pop up adviser on your mobile htc wildfire s. Try history eraser that can be dowloaded in the market. or any other cache and cookie cleaners, read description frist and make sure to back up all your phones data on your google account.
我以前也遇到过这种情况,但还没有找到可靠工作的解决方案,因此可以尝试以下几件事:
1)重新启动手机
2) 卸载手机上任何以前版本的应用程序
3)通过在任务管理器中杀死它来重新启动adb(杀死后它会自动重新启动)
I've come across this before as well and haven't found one solution that works reliably so here are a couple of things to try:
1) Restart the phone
2) Uninstall any previous builds of the app on your phone
3) Restart adb by killing it off in your task manager (it will auto-restart when killed)
备份我的数据并执行硬重置。现在工作正常。
Backed up my data and performed a hard reset. Now works fine.
重新启动您的设备就可以了,以下链接是同一问题及其答案。
Android 上 INSTALL_FAILED_INSUFFICIENT_STORAGE 错误的解决方案
Reboot your device would works, and the following link is a same question with answers.
Solution to INSTALL_FAILED_INSUFFICIENT_STORAGE error on Android