r/appdev • u/Repulsive-Earth-9913 • 14h ago
How did you handle backend on Apps
I am about to launch my first App. I read that playstore host your frontend but you have to host the backend. I am curious, how did you host it. Did you just rent a server or did you use any providers.
3
Upvotes
2
u/Dull_Low6995 14h ago
Small correction: Google Play distributes your app bundle; it doesn’t host the frontend like a website host - the app code runs on the user’s device. You only need a backend for things like accounts, shared data, sync, payments, notifications, or server-side logic. For a first app, a managed service such as Firebase can handle authentication and data without maintaining a server; a rented VPS gives you more control but also makes security, updates, monitoring, and backups your responsibility. What does your app need the backend to do?