buildSrc/src/main/kotlin/android-signing.gradle.kts
changeset 1 831cffa9c991
child 10 9aad34f43f71
equal deleted inserted replaced
0:fef46dce2812 1:831cffa9c991
       
     1 package com.geekorum.build
       
     2 
       
     3 /**
       
     4  * Define the following properties to set the signing configuration for release build
       
     5  *    - RELEASE_STORE_FILE : Path to the keystore file
       
     6  *    - RELEASE_STORE_PASSWORD: Password of the keystore file
       
     7  *    - RELEASE_KEY_ALIAS: key alias to use to sign
       
     8  *    - RELEASE_KEY_PASSWORD: password of the key alias
       
     9  */
       
    10 
       
    11 if (findProperty("RELEASE_STORE_FILE") != null) {
       
    12     configureReleaseSigningConfig()
       
    13 }