Skip to content

Commit

Permalink
chore: Use correct versionCode and versionName
Browse files Browse the repository at this point in the history
  • Loading branch information
wba2hi committed Dec 5, 2023
1 parent fa49aae commit 0ea7d95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
id("com.google.devtools.ksp")
alias(libs.plugins.kotlin.serialization)
kotlin("kapt")
id("com.google.dagger.hilt.android")
alias(libs.plugins.hilt.android)
kotlin("android")
}

Expand All @@ -36,8 +36,8 @@ android {
applicationId = "org.eclipse.kuksa.companion"
minSdk = 27
targetSdk = 33
versionCode = 1
versionName = "1.0"
versionCode = rootProject.extra["projectVersionCode"].toString().toInt()
versionName = rootProject.extra["projectVersion"].toString()

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down

0 comments on commit 0ea7d95

Please sign in to comment.