From c1706a074bd2e78c2773ce253ac3a59163c30db8 Mon Sep 17 00:00:00 2001 From: Linh Pham Date: Mon, 7 Aug 2023 20:05:37 -0700 Subject: [PATCH] Update default local version code (#504) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I forgot to update the default version code for local build in #503. Before, devs usually get 30009999. This PR updates the version to be 90009999 to make it consistent with CI build number --- .../src/main/kotlin/slack/gradle/ApkVersioningPlugin.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slack-plugin/src/main/kotlin/slack/gradle/ApkVersioningPlugin.kt b/slack-plugin/src/main/kotlin/slack/gradle/ApkVersioningPlugin.kt index 221705a70..76d7f888c 100644 --- a/slack-plugin/src/main/kotlin/slack/gradle/ApkVersioningPlugin.kt +++ b/slack-plugin/src/main/kotlin/slack/gradle/ApkVersioningPlugin.kt @@ -126,7 +126,7 @@ internal class ApkVersioningPlugin : Plugin { private object ApkVersioning { - const val DEFAULT_VERSION_CODE: Int = 9999 + const val DEFAULT_VERSION_CODE: Int = 90009999 } /**