buildSrc/src/main/kotlin/android-signing.gradle.kts
author Da Risk <da_risk@geekorum.com>
Sun, 10 May 2020 03:53:45 -0400
changeset 8 729a3ee3840a
parent 1 831cffa9c991
child 10 9aad34f43f71
permissions -rw-r--r--
build: also allow instrumentation tests on Java 11

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()
}