0

I'm trying to export and upload a key from Android Studio but all the tutorials I've seen instruct you to click on "Build" and then "Generate Signed Bundle or APK" in Android Studio but I don't have that option. enter image description here

I currently have Android Studio Arctic Fox 2020.3.1 Patch 4 installed.

1 Answers1

0

Add this line and create a JKS file into an app folder.

be sure you use last version of Android Studio

android {
...
signingConfigs {
    release {
        keyAlias 'name your choosen'
        keyPassword 'pass'
        storeFile file('key.jks')
        storePassword 'pass'
    }
}