In Android studio, I selected build-> Generate Signed Bundle/APK and successfully created an aab file. When I tried to upload to play store, it told me my target api version was set to 28 and has to be a minimum of 29. So I changed it to target 29 in build.gradle by replacing targetSdkVersion = 28 with targetSdkVersion = 29. Then I deleted the generated aab file, jks file, and private_key.pepk files, and I tried running Generate Signed Bundle/APKagain, except nothing happens. No error message is produced. I press finish and nothing happens. I've tried changing back the build.gradle settings, but not I am unable to generate signed bundles and APKs. How do I fix this?
Android Studio will not generate a signed aab
1.2k Views Asked by Philip7899 At
1
There are 1 best solutions below
Related Questions in ANDROID-STUDIO
- how do i submit a pastebin or pastee from an android app and get the url back
- Getresource id Error
- Call special fragment in Navigation Drawer Activity from separate Activity
- Debug native code in Android Studio
- How to introduce in this AlertDialog a onBackButtonPressed method?
- Android Studio : All of a sudden cannot resolve symbol 'ActionBarActivity'
- Error connecting to Google Play Games
- Android Studio - Illegal character 8204 error
- Android Studio unable to run the project
- How do I know what is available in minSdkVersion in Android Studio?
- Android Studio update (version 1.2.1.1) - Cannot resolve symbol 'TintCheckBox'
- How to accept cookies when using a webservice - Android?
- How can I always show Android Studios Preview?
- Android Studio cannot recognize "setAdapter()" method
- Error inflating class Android support design
Related Questions in GRADLE
- Gradle. Detect dependencies problems
- Gradle Duplicate Entry
- Creating distribution with repackaged spring boot jar using gradle application plugin
- LinkageError after upgrading dropwizard to 0.8.1
- Android Studio unable to run the project
- Add JVM args to spring boot application
- How do I know what is available in minSdkVersion in Android Studio?
- Gradle: Override transitive dependency by version classifier
- gradle get System environment variables
- Why does Eclipse want to download a previous version of Gradle when I already have a later version installed?
- Gradle project sync failed - Gradle DSL method not found: android()
- Use thymeleaf template for some pages and rest for some for building gradle project
- 'Provided' dependency in Gradle
- Invalid Gradle JDK configuration found
- Does Android Studio use Gradle Daemon?
Related Questions in ANDROID-BUILD
- Vector drawables that are automatically converted to pngs
- How to undo deleting a module in android Studio
- Android same attribute name in two libs, name collision
- Unknown build issue (app:transformClassesWithJarMergingForDebug)
- While making build in Cordova using cmd
- Running Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'
- Android build tool command aapt "cannot execute binary file"
- java.lang.UnsatisfiedLinkError: dlopen failed: cannot locate symbol “__aeabi_memmove4”
- the relationship between .dex file and .apk in Android and the dex method count limit
- Is jack and jill for android compatible with byte code weaving?
- Eclipse doesn't build Android project targeted at 5.0 Lollipop
- Android Build - Select app name and icon at compile time
- Android MultiDex - Questions on Inner Workings
- Android Eclipse ADT build build process enters an unending loop
- android build release apk on jenkins, without storing my password in plain text
Related Questions in ANDROID-APP-BUNDLE
- "Couldn't upload. Try again." error on Google Play Console
- Failed to build an Android App Bundle because it uses reserved file or directory name 'res
- Problem in uploading new app bundle or apk in play store
- AAB: Installing Google Play Console APK, but app has a small update?
- Firebase flutter app was released on Google PlayStore. But fatal issue occurred with google sign in
- A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade -------flutter
- Android App status in Play store shows preregister instead of install
- Android App Bundle: Google Play 150MB limit seems to include the Dynamic Feature Module size?
- How to Play 'Install-time' Delivery Asset pack Mp3 files in flutter?
- Replace files in BUNDLE-METADATA folder in Android App Bundles (.aab) file
- How to test application version upgrade from apk to version from android app bundle?
- Is there a way to get aab file without using eas in expo
- Platform specifc assets folders in Android App bundle's
- Android App bundle install not placing native libs in the lib/$ABI folder
- Google Play console shows not required features as used feature in app bundle
Related Questions in ANDROID-SIGNING
- how convert manifest.xml to binary for apk with programming in android
- How to replace google signature key in an already existing application with the key of another application
- How to implement existing user sign-in just using phone number and otp using Firebase
- AOSP: Cannot pack presigned apk
- Android apps with same signature but different packages
- Android Studio will not generate a signed aab
- Android Wear Sign In
- Android 12/13 Signing images fails with error in sign_target_files_apks due to missing file vendor.img when vendor binaries are added
- Your Android App Bundle is signed with the wrong key. Ensure that your App Bundle is signed with the correct signing key and try again: SHA1
- Signing Android white label apps
- Validating app's release signature key runtime for security reasons?
- Cannot cast to com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener
- Google Sign In integration in android with user input
- How to enable Google Play App Signing
- Is it possible to upload deobfuscation files while using Google Play App Signing?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Went through same problem, just check
If using previously created KeyStore and Key: Check whether you are entering the correct password for both Keystore and Key that you generated earlier.
If the issue still persists, create a new KeyStore and key for the package.
If you want to update an existing app on play store and lost your keystore and Key, then no solution is available for this. The update won't be taken and you need to upload it as a new app, entirely separate from your existing app. So, always keep the keystore and key with backups.