skip to Main Content

I have an release.aab file which has Android App Bundle. How can I find out what min and target SDK android versions the bundle is intended for?

Although I have created this app (using flutter), it doesn’t seem to match what I have in the build.gradle. I know this because it says so in the Android Play console after uploading.

Just to say, I’m on Ubuntu and am using VSCode (instead of Android Studio).

2

Answers


  1. complie sdk version 21
    Target sdk version 31
    
    Login or Signup to reply.
  2. The bundle file release.aab contains AndroidManifest.xml in binary format, thus you can real targetSDK by looking at the aab file using Android Studio Analyze APK feature.

    1. In Android Studio open menu Build -> Analyze APK
    2. Select your aab file
    3. Select path /base/manifest/AndroidManifest.xml
    4. Scoll down to the point where the <uses-sdk entry is to see the contained targetSdkVersion version.
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search