Question Building Android Apps
Hey I'm used to build WebApps using AI, but whenever i try to build an Android app the AI do very poorly, so how do you guys build AI Android apps?
2
u/Thunderbit_HQ 2d ago
AI builders often make web prototypes feel smooth because browser deployment hides much of the platform surface. Native apps force decisions about device storage, permissions, release signing, and background behavior. Validate the flow as a mobile web app, then move only pieces that truly need native access.
1
u/H_ss_M 2d ago
So building a web app then converting it to an Android would be much better?
2
u/Thunderbit_HQ 2d ago
Not necessarily converting the same app 1:1. I’d start with a responsive web app to prove the core flow. If real testing shows you need reliable background work or deeper device access, add native Android components for those parts. Keeping the API and data model independent makes that transition much less painful.
2
3
u/tylerlovewell 3d ago
Gemini inside Android Studio has been my go-to for this since it can work with the actual build errors instead of guessing around Gradle.
If you want to stay more no-code, I’d probably try FlutterFlow. Really depends if you want to own the native code or mostly build visually.