Skip to content

Commit

Permalink
chore: use versionName directly in base name
Browse files Browse the repository at this point in the history
  • Loading branch information
Yash-Garg committed Nov 7, 2022
1 parent 7ed13d8 commit 8fb7625
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 @@ -26,12 +26,12 @@ android {
applicationId = "dev.yashgarg.qbit"
minSdk = 24
targetSdk = 33
versionCode = 4
versionName = "0.1-$commitHash"
versionCode = 5
versionName = "v0.1.$versionCode-$commitHash"

multiDexEnabled = true
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
setProperty("archivesBaseName", "${defaultConfig.applicationId}-$commitHash")
setProperty("archivesBaseName", "${defaultConfig.applicationId}-$versionName")
}

buildTypes {
Expand Down

0 comments on commit 8fb7625

Please sign in to comment.