Publishing an App to Google Play Store
Steps required to publish your Android app on the Google Play Store.
Setup Steps
1. Create a Google Play Developer account ($25 one-time fee)
https://play.google.com/console
2. Create an app signing key:
keytool -genkey -v -keystore upload-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias upload3. Build release APK/AAB:
# Flutter
flutter build appbundle --release
# React Native
cd android && ./gradlew bundleRelease4. Create a new app in Play Console
5. Fill in app details:
- App name and description (at least 2 languages)
- Screenshots (phone, tablet)
- App icon (512x512 px)
- Feature graphic (1024x500 px)
6. Complete the content rating questionnaire
7. Add privacy policy URL
8. Select pricing and distribution countries
9. Upload AAB file (Production track)
10. Submit for review (usually takes 1-3 days)
Related Guides
Android Studio Setup
Install Android Studio IDE and create your first Android project.
Flutter Setup
Install Flutter SDK and start cross-platform mobile app development.
React Native Setup
Set up the React Native cross-platform mobile app development environment.
Publishing an App to Apple App Store
Steps required to publish your iOS app on the Apple App Store.