配置Gradle APK签名

时间:2018-12-02 14:22:40

标签: android gradle apk

我已将发布版本配置如下:

signingConfigs {
    config {
        keyAlias keystoreProperties['keyAlias']
        keyPassword keystoreProperties['keyPassword']
        storePassword keystoreProperties['storePassword']
        storeFile file(keystoreProperties['storeFile'])
    }
}

我的问题是,如何在脚本中选择签名版本,就像在Android Studio中一样: enter image description here

0 个答案:

没有答案