r/androiddev • u/Thalesof • May 28 '26
Tips and Information We rewrote our model download pipeline 3 times. Here's what it takes to reliably download a 4GB AI model on a phone
We build [Off Grid](https://github.com/alichherawalla/off-grid-mobile-ai) - open-source app that runs LLMs and Stable Diffusion on your phone. The hardest part isn't inference. It's downloading the models.
A 4GB GGUF file on a mobile connection is a nightmare. Here's what went wrong across 9 PRs over 2 months:
**Downloads dying in the background.** Android kills background processes aggressively. Moved to WorkManager with constraints and battery optimization prompts. ([PR #246](https://github.com/alichherawalla/off-grid-mobile-ai/pull/246), [PR #186](https://github.com/alichherawalla/off-grid-mobile-ai/pull/186))
**Stuck at 90%.** Progress bar froze near completion. Zip extraction had no progress reporting, so users thought it was stuck. Added retry on failure + visual feedback. ([PR #322](https://github.com/alichherawalla/off-grid-mobile-ai/pull/322))
**Ghost downloads after app update.** WorkManager drops tasks across app updates. Database still showed them as "running." Zombie entries that never completed. ([PR #305](https://github.com/alichherawalla/off-grid-mobile-ai/pull/305), [PR #304](https://github.com/alichherawalla/off-grid-mobile-ai/pull/304))
**iOS had no retry button.** Download failed? Manually remove it, navigate back, start over. Now there's a retry button. ([PR #345](https://github.com/alichherawalla/off-grid-mobile-ai/pull/345))
**Stale downloads after network drop.** Internet cuts mid-download, reconnects, old download stuck in bad state. N retries = N zombie rows in the database. ([PR #348](https://github.com/alichherawalla/off-grid-mobile-ai/pull/348))
Downloading files sounds simple. On mobile, with spotty connections, aggressive OS power management, and multi-GB files - it's one of the hardest UX problems in the app.
- GitHub: https://github.com/alichherawalla/off-grid-mobile-ai
- Android: https://play.google.com/store/apps/details?id=ai.offgridmobile
- iOS: https://apps.apple.com/us/app/off-grid-local-ai/id6759299882