android-app-bundle
A failure occurred while executing com.android.build.gradle.internal.tasks.FinalizeBundleTask$BundleToolRunnable
I forgot to add my keystore.properties file which I read at the signing process
How to change the generated filename for App Bundles with Gradle?
You could use something like this: defaultConfig { applicationId “com.test.app” versionCode 1 versionName “1.0” setProperty(“archivesBaseName”, applicationId + “-v” + versionCode + “(” + versionName + “)”) }
“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
How to add debug symbols to build.gradle
To use the option ndk debugSymbolLevel as written in the docs you need an android gradle plugin 4.1 or later. At the time of writing the lastest 4.1 version is 4.1.2 You will need also to install ndk and cmake for android studio. In your android build.gradle you need the to set android gradle plugin … Read more
How do I install bundletool?
If you have brew installed simply run brew install bundletool and the alias will be set up for you as well. It did the trick for me.
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