We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dd9a18 commit 6527f57Copy full SHA for 6527f57
2 files changed
AndroidApp/build-logic/src/main/kotlin/me/nya_n/notificationnotifier/Application.kt
@@ -12,8 +12,8 @@ internal fun Project.configureApplication(
12
defaultConfig {
13
minSdk = libs.version("minSdk").toInt()
14
targetSdk = libs.version("targetSdk").toInt()
15
- versionCode = 2
16
- versionName = "1.1"
+ versionCode = libs.version("versionCode").toInt()
+ versionName = libs.version("versionName")
17
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
18
}
19
buildTypes {
AndroidApp/gradle/libs.versions.toml
@@ -4,6 +4,10 @@
4
compileSdk = "35"
5
minSdk = "35"
6
targetSdk = "35"
7
+# App Versions
8
+versionCode = "2"
9
+versionName = "1.1"
10
+# ---------------------------------------------------------
11
# Library
agp = "8.9.3"
0 commit comments