Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 6225b74

Browse files
committed
Bump version to 2.5.0-beta01
1 parent 21debb4 commit 6225b74

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

app/build.gradle.kts

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
alias(libs.plugins.protobuf)
1111
}
1212

13-
val baseVersionName = "2.4.10"
13+
val baseVersionName = "2.5.0-beta01"
1414
val isDevVersion get() = exec("git tag --contains HEAD").isEmpty()
1515
val verNameSuffix get() = if (isDevVersion) ".dev" else ""
1616

@@ -92,8 +92,9 @@ android {
9292

9393
applicationVariants.configureEach {
9494
outputs.configureEach {
95-
(this as? ApkVariantOutputImpl)?.outputFileName =
96-
"MRepo-${versionName}-${versionCode}-${name}.apk"
95+
if (this is ApkVariantOutputImpl) {
96+
outputFileName = "MRepo-${versionName}-${versionCode}-${name}.apk"
97+
}
9798
}
9899
}
99100
}

0 commit comments

Comments
 (0)