buildSrc/src/main/kotlin/android-signing.gradle.kts
author Da Risk <da_risk@geekorum.com>
Fri, 08 May 2020 21:33:19 -0400
changeset 1 831cffa9c991
child 10 9aad34f43f71
permissions -rw-r--r--
source import

package com.geekorum.build

/**
 * Define the following properties to set the signing configuration for release build
 *    - RELEASE_STORE_FILE : Path to the keystore file
 *    - RELEASE_STORE_PASSWORD: Password of the keystore file
 *    - RELEASE_KEY_ALIAS: key alias to use to sign
 *    - RELEASE_KEY_PASSWORD: password of the key alias
 */

if (findProperty("RELEASE_STORE_FILE") != null) {
    configureReleaseSigningConfig()
}