0
votes

When trying to upload apk or app bundle aab on google play store getting following error Upload failed

You need to use an SDK with a version number of 29 or lower.

* apply plugin: 'com.android.application'

android { compileSdkVersion 29 buildToolsVersion "29.0.0" defaultConfig { applicationId "in.starsignature.app" minSdkVersion 1 targetSdkVersion 29 versionCode 2 versionName "1.2" }

*

1
Post your Gradle. - Abhay Koradiya
Are you uploading first version ? - Abhay Koradiya
@AbhayKoradiya after setting maxSDKVersion=29 in androidManifest.xml it started working. but I am blocked from answering on this site - Sanjay Thavi

1 Answers

0
votes

Update configuration in the build.gradle folder

for example

android {
compileSdkVersion 29
defaultConfig {
  ...
    minSdkVersion 21
    targetSdkVersion 29
 ...

   }

 }