diff --git a/app/version.properties b/app/version.properties index 987ace8140..618570160e 100644 --- a/app/version.properties +++ b/app/version.properties @@ -1,5 +1,5 @@ # # This file was automatically generated by 'versioning-plugin'. DO NOT EDIT MANUALLY. # -versioning-plugin.versionCode=12200 -versioning-plugin.versionName=1.22.0 +versioning-plugin.versionCode=12300 +versioning-plugin.versionName=1.23.0-SNAPSHOT diff --git a/build-logic/src/main/kotlin/app/passwordstore/gradle/versioning/VersioningPlugin.kt b/build-logic/src/main/kotlin/app/passwordstore/gradle/versioning/VersioningPlugin.kt index d2797a75c7..0a13318180 100644 --- a/build-logic/src/main/kotlin/app/passwordstore/gradle/versioning/VersioningPlugin.kt +++ b/build-logic/src/main/kotlin/app/passwordstore/gradle/versioning/VersioningPlugin.kt @@ -40,9 +40,10 @@ class VersioningPlugin : Plugin { "version.properties must contain a '$VERSIONING_PROP_VERSION_NAME' property" } val versionCode = - requireNotNull(versionProps.getProperty(VERSIONING_PROP_VERSION_CODE).toInt()) { - "version.properties must contain a '$VERSIONING_PROP_VERSION_CODE' property" - } + requireNotNull(versionProps.getProperty(VERSIONING_PROP_VERSION_CODE)) { + "version.properties must contain a '$VERSIONING_PROP_VERSION_CODE' property" + } + .toInt() project.plugins.withType { androidAppPluginApplied.set(true) extensions.configure {