-
Notifications
You must be signed in to change notification settings - Fork 1
App Distribution
Midhun Harikumar edited this page Mar 20, 2019
·
3 revisions
This page consolidates the various resources and their specifics required for distributing an android app on multiple App Stores.
To be updated..
- Application Title:
- Description:
- App Icon: PNG format (512 X 512 pixels)
- Cover Image: JPG/PNG format (1024 X 500 pixels)
- Screenshots:
- JPG/PNG format
- Minimum 320 pixels, Maximum 3840 pixels
- Image ratio 2:1
- Minimum 4 to maximum 8 images can be uploaded
- Youtube Video URL:
- Support email id:
- Application Title:
- Description:
- Features:
- Keywords:
- App Icon:
- 512 x 512px PNG (with transparency)
- 114 x 114px PNG (with transparency)
- Screenshots:
- Between 3 and 10 PNGs or JPGs
- 800 x 480px, 1024 x 600px, 1280 x 720px, 1280 x 800px, 1920 x 1080px, 1920 x 1200px, or 2560 x 1600px (portrait or landscape)
- Promotional Image: 1024 x 500px (landscape only) PNG or JPG
Link to Developer Page
PackageManager packageManager = context.getPackageManager();
String installerPackageName = packageManager.getInstallerPackageName(context.getPackageName());
if(installerPackageName.equals("com.sec.android.app.samsungapps")) {
// Galaxy Apps
} else if (installerPackageName.equals("com.android.vending")) {
// Google Play
} else if (installerPackageName.equals("com.amazon.venezia")){
// Amazon Play Store
} else {
// Other channel
}