A New Collection of Thoughtful Learning Apps — Now Available on iOS & Android

Image
I’m excited to share a set of mobile apps I’ve recently completed and published on both the Google Play Store and the Apple App Store. These apps are designed with a simple goal in mind: to make meaningful, structured content more accessible, whether you’re studying theology or improving your English vocabulary. 📱 Now Available on Both Platforms All apps are live and available for download: Google Play Developer Page: https://play.google.com/store/apps/dev?id=5835943159853189043 Apple App Store Developer Page: https://apps.apple.com/ca/developer/q-z-l-corp/id1888794100 📖 Theology & Confession Study Apps For those interested in Reformed theology and classical Christian teachings, I’ve developed a series of apps that present foundational texts in a clean, focused reading format: The Belgic Confession Canons of Dort Heidelberg Catechism Westminster Shorter Catechism Each app is designed to provide a distraction-free experience, making it easier to read, reflect, and revisit these im...

Fix Android Emulator “Not Enough Space” Error (installDebug Failed)

Fix Android Emulator “Not Enough Space” Error (installDebug Failed)



If you are running a React Native app and see this error when executing npm run android, you are not alone.

Execution failed for task ':app:installDebug'.
...
java.io.IOException: Requested internal only, but not enough space

This error usually means one thing:

🚨 Your Android Emulator is out of storage


💡 Root Cause

By default, Android Virtual Devices (AVD) are created with very limited internal storage (often 2GB–6GB). Over time, this space gets filled by:

  • Debug APK installs
  • Gradle build artifacts
  • System updates and cache

Eventually, there is no space left to install your app.


✅ My Fix (Works Immediately)

The most effective solution is to increase the emulator storage size.

  1. Open Android Studio
  2. Go to Device Manager
  3. Edit your emulator (or create a new one)
  4. Click Show Advanced Settings
  5. Set Internal Storage to 16 GB
  6. Save and restart the emulator

After increasing to 16GB, the issue disappears.


⚡ Alternative Quick Fix

If you need a quick temporary fix:

  • Wipe emulator data (Device Manager → Wipe Data)
  • Uninstall the app manually:
adb uninstall your.package.name

However, these are temporary. The real fix is increasing storage.


🧠 Pro Tips

  • Always allocate at least 12GB–16GB for development AVDs
  • Avoid using snapshots (they can preserve “full disk” state)
  • Clean builds occasionally:
cd android
./gradlew clean

✅ Conclusion

If you see:

Requested internal only, but not enough space

It is not a code issue — it is your emulator running out of disk space.

Fix: Increase AVD internal storage to 16GB.

This is the most reliable and permanent solution.

❤️ Support This Blog


If this post helped you, you can support my writing with a small donation. Thank you for reading.


Comments

Popular Posts

2026 Begins: Choosing to Stay on the Path as a Blogger

Health Checks and Scaling Strategies for Next.js in Kubernetes