Labs ICT
โญ Pro Login

Publishing to App Store/Play Store

Preparing and publishing your app to stores

Publishing to App Store/Play Store

Getting your app into the hands of users requires publishing to the App Store and/or Google Play Store. Let's walk through the process for each platform.

Publishing Requirements


  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
  โ”‚         Publishing Requirements                 โ”‚
  โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
  โ”‚                                                  โ”‚
  โ”‚  Apple App Store                                โ”‚
  โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”       โ”‚
  โ”‚  โ”‚  โ€ข Apple Developer Account ($99/yr)  โ”‚       โ”‚
  โ”‚  โ”‚  โ€ข App Store icon (1024x1024)        โ”‚       โ”‚
  โ”‚  โ”‚  โ€ข Screenshots for each device size  โ”‚       โ”‚
  โ”‚  โ”‚  โ€ข App description & keywords        โ”‚       โ”‚
  โ”‚  โ”‚  โ€ข Privacy policy URL                โ”‚       โ”‚
  โ”‚  โ”‚  โ€ข Review process (1-3 days)         โ”‚       โ”‚
  โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜       โ”‚
  โ”‚                                                  โ”‚
  โ”‚  Google Play Store                              โ”‚
  โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”       โ”‚
  โ”‚  โ”‚  โ€ข Google Play Developer ($25 once)  โ”‚       โ”‚
  โ”‚  โ”‚  โ€ข App icon (512x512)               โ”‚       โ”‚
  โ”‚  โ”‚  โ€ข Feature graphic (1024x500)        โ”‚       โ”‚
  โ”‚  โ”‚  โ€ข Screenshots (min 2)              โ”‚       โ”‚
  โ”‚  โ”‚  โ€ข Store listing & description       โ”‚       โ”‚
  โ”‚  โ”‚  โ€ข Content rating questionnaire      โ”‚       โ”‚
  โ”‚  โ”‚  โ€ข Review process (hours to days)    โ”‚       โ”‚
  โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜       โ”‚
  โ”‚                                                  โ”‚
  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

React Native: Build for Production


# iOS Release Build
cd ios
pod install
cd ..
npx react-native run-ios --configuration Release

# Android Release Build
cd android
./gradlew assembleRelease

# With Expo
eas build --platform ios
eas build --platform android
eas submit --platform ios
eas submit --platform android

Flutter: Build for Production


# iOS Build
flutter build ios --release

# Android Build
flutter build appbundle --release

# Publish with Flutter
flutter pub publish

# With Expo
flutter build apk --release
flutter build appbundle --release

Pre-Launch Checklist

  • Test thoroughly: Test on multiple devices and screen sizes
  • App icons: Create proper icons for all required sizes
  • Screenshots: Capture attractive screenshots showing key features
  • Description: Write clear, compelling app description
  • Privacy policy: Create and link a privacy policy page
  • Content rating: Complete the content rating questionnaire
  • Pricing: Decide if your app is free or paid

๐Ÿงช Quick Quiz

What is the maximum image size for an Android app icon?