4

I am trying to generate a signed bundle or apk to upload the file on PlayStore, but the problem is that it is not showing me an option to select v1 or v2 signature. If I go further without these 2 options, then I don't even see the apk file under 'build' folder.

Generate signed apk window

enter image description here

Build/output/apk folder

enter image description here

Any solutions please?

VERSIONS

  • Android Studio 3.3
  • Gradle 4.10.1
Adeel
  • 2,901
  • 7
  • 24
  • 34

1 Answers1

0

Try this

signingConfigs {
    release {
        v1SigningEnabled true
        v2SigningEnabled true
    }
}
Shun Min Chang
  • 868
  • 7
  • 13