Skip to content

Commit

Permalink
build: fix var assign for flavour Full
Browse files Browse the repository at this point in the history
  • Loading branch information
ignoramous authored Mar 1, 2024
1 parent ae3008e commit 9a6092b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ android {
dimension "releaseType"
// getPackageInfo().versionCode not returning the correct value (in prod builds) when
// value is set in AndroidManifest.xml so setting it here
versionCode System.getenv("VERSION_CODE")
versionName gitVersion
vectorDrawables.useSupportLibrary true
versionCode = System.getenv("VERSION_CODE")
versionName = gitVersion
vectorDrawables.useSupportLibrary = true
}
}
lintOptions {
Expand Down

0 comments on commit 9a6092b

Please sign in to comment.