buildSrc/src/main/kotlin/play-store-publish.gradle.kts
changeset 1 831cffa9c991
child 10 9aad34f43f71
equal deleted inserted replaced
0:fef46dce2812 1:831cffa9c991
       
     1 package com.geekorum.build
       
     2 
       
     3 /**
       
     4  Configuration for "com.github.triplet.play" plugin
       
     5  This configuration expects the given properties
       
     6  PLAY_STORE_JSON_KEY_FILE: google play console service credentials json file to use
       
     7  PLAY_STORE_TRACK: track to publish the build, default to internal but can be set to alpha, beta or production
       
     8  PLAY_STORE_FROM_TRACK: track from which to promote a build, default to internal but can be set to alpha, beta or production
       
     9 */
       
    10 
       
    11 if (findProperty("PLAY_STORE_JSON_KEY_FILE") != null) {
       
    12     configureAndroidPlayStorePublisher()
       
    13 }