INSTALL_FAILED_INSUFFICIENT_STORAGE
android
install_error
ai_generated
true
INSTALL_FAILED_INSUFFICIENT_STORAGE: 由于存储空间不足,无法安装软件包
INSTALL_FAILED_INSUFFICIENT_STORAGE: Package could not be installed due to insufficient storage
ID: android/install-failed-insufficient-storage
85%修复率
86%置信度
1证据数
2024-12-01首次发现
版本兼容性
| 版本 | 状态 | 引入 | 弃用 | 备注 |
|---|---|---|---|---|
| Android 13 (API 33) | active | — | — | — |
| Android 14 (API 34) | active | — | — | — |
| adb 1.0.41 | active | — | — | — |
根因分析
设备可用存储空间少于 APK 安装和提取所需的空间。
English
Device has less free storage than required for APK installation and extraction.
解决方案
-
Free up device storage: delete unused apps, clear cache, or move media to SD card. Then run: adb install -r app-release.apk
-
Use adb install with -s flag to install on SD card if available: adb install -s app-release.apk. Requires device support.
无效尝试
常见但无效的做法:
-
Clear app data of other apps using Settings > Apps > Clear Data
60% 失败
Clearing data may free little space; APK extraction needs contiguous free space, not just total free.
-
Uninstall the same app and reinstall from Google Play
75% 失败
If device storage is critically low, Play Store also fails with same error; adb install still fails.