“Couldn’t upload. Try again.” error on Google Play Console

Google Chrome Use a new Incognito window to upload the .aab or .apk (as mentioned in the comments). Alternatively, clear the website data: going to: developer console (F12) > Application > Storage > Clear site data Screenshot press F5 to refresh the page uploading the .apk/.aab again Safari Open Preferences > Privacy > Manage Website … Read more

Android App Bundle introduces Resource Not found crash in Android app

This is almost certainly users sharing (sideloading) the app, either via P2P sharing programs, or uploading the APK to the web then other users downloading and installing from the web. People used to dealing with non Android App Bundle apps just transfer and share the main APK. But your App bundle app has lots of … Read more

Android App Bundle with in-app locale change

Edit: The PlayCore API now supports downloading the strings for another language on-demand: https://developer.android.com/guide/playcore/feature-delivery/on-demand#lang_resources Alternative solution (discouraged): You can disable the splitting by language by adding the following configuration in your build.gradle android { bundle { language { // Specifies that the app bundle should not support // configuration APKs for language resources. These // … Read more

Generate Apk file from aab file (android app bundle)

So far nobody has provided the solution to get the APK from an AAB. This solution will generate a universal binary as an apk. Add –mode=universal to your bundletool command (if you need a signed app, use the –ks parameters as required). bundletool build-apks –bundle=/MyApp/my_app.aab –output=/MyApp/my_app.apks –mode=universal MAIN STEP: Change the output file name from … Read more

How to Enable Internal App Sharing for Android?

Try Below Options to Enable Internal App Sharing Option 1: Step 1: Open Play store. Step 2: Navigate to Setting. (Click on the account profile picture. which is located at the top right corner of the screen) Step 3: To Enable Developer Options. (Goto > About Section. and Tap seven times on the Play Store … Read more