buildSrc/src/main/kotlin/android-signing.gradle.kts
author Da Risk <da_risk@geekorum.com>
Sat, 09 May 2020 18:16:48 -0400
changeset 7 b83e6b69e806
parent 1 831cffa9c991
child 10 9aad34f43f71
permissions -rw-r--r--
Build: allow to build unit test on java11

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