Signed Path APK Wizard Relative Key Store Path

I want to save the keystore in my Android studio project so that I can use the relative path in the APK Signature Wizard. But I can’t understand where the APK Signature Wizard is located.

How can I use the relative path to my Android studio project for my keystore for use with the Generated Signed APK Wizard?

+4
source share
1 answer

I just tried in Android Studio 1.4, and it seems that the wizard uses paths relative to the project directory.

Example:

  • project catalog /home/dev/project
  • module name app
  • keystore file /home/dev/project/app/keystores/debug.keystore

app/keystores/debug.keystore ( , - ).

build.gradle debug.keystore( , , app)

android {
    signingConfigs {
        debug {
            keyAlias 'androiddebugkey'
            keyPassword 'android'
            storeFile file('keystore/debug.keystore')
            storePassword 'android'
        }
    }
...
}
+2

All Articles