diff -r 3ccb29f83309 -r 91a3ad3b1b9c buildSrc/src/main/kotlin/AndroidPlayStorePublisher.kt --- a/buildSrc/src/main/kotlin/AndroidPlayStorePublisher.kt Wed Oct 06 16:05:47 2021 -0400 +++ b/buildSrc/src/main/kotlin/AndroidPlayStorePublisher.kt Tue Nov 29 14:05:44 2022 -0400 @@ -41,10 +41,10 @@ internal fun Project.configureAndroidPlayStorePublisher(): Unit { apply(plugin = "com.github.triplet.play") configure { - defaultToAppBundles = true - serviceAccountCredentials = file(properties["PLAY_STORE_JSON_KEY_FILE"]!!) - track = properties.getOrDefault("PLAY_STORE_TRACK", "internal") as String - fromTrack = properties.getOrDefault("PLAY_STORE_FROM_TRACK", "internal") as String + defaultToAppBundles.set(true) + track.set(properties.getOrDefault("PLAY_STORE_TRACK", "internal") as String) + fromTrack.set(properties.getOrDefault("PLAY_STORE_FROM_TRACK", "internal") as String) + serviceAccountCredentials.set(file(properties["PLAY_STORE_JSON_KEY_FILE"]!!)) } val android = the() as ExtensionAware @@ -53,7 +53,7 @@ register("publishToGooglePlayStore") { group = "Continuous Delivery" description = "Publish project to Google play store" - dependsOn(named("publish")) + dependsOn(named("publishApps")) } // only there for consistent naming scheme