Skip to content Skip to sidebar Skip to footer

Unable To Sign Apk "with Only The Traditional Scheme" Even After Setting 'v2signingenabled' As False

I updated my android-studio to latest stable version i.e. 'Android Studio 2.3' and also the gradle to 2.3.0. Now, when I am trying to generate a signed apk of my app's release bui

Solution 1:

What you see in the top screenshot is the Android Studio wizard for creating a signed APK. What you want is to tick only the V1 (Jar Signature) checkbox. The other checkbox is for the new signing.

The setting you have in your build.gradle file does not affect what the Android Studio wizard shows to you. It only affects a build from the command line. So ticking V1 and then Finish will work just fine.

I do recommend to make your project ready for the new signing though, as it drastically reduces the installation time for your users (You would then tick V1 and V2 signing. V1 would be for backwards compability)

Solution 2:

Please add

v2SigningEnabled false in your Sign In buil.gradle app File

enter image description here

For More Detail Read Documentation

Post a Comment for "Unable To Sign Apk "with Only The Traditional Scheme" Even After Setting 'v2signingenabled' As False"