Skip to content

Commit

Permalink
pre 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
luca committed Feb 7, 2021
1 parent f009a33 commit 3eecd28
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ buildscript {
ext {
android_gradle_ver = '4.1.2'

version_code = 2
version_name = "1.0.1"

compile_sdk_ver = 30
build_tools_ver = '30.0.3'

Expand Down
4 changes: 2 additions & 2 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
minSdkVersion min_sdk_ver
targetSdkVersion compile_sdk_ver

versionCode 1
versionName "1.0"
versionCode = version_code
versionName = version_name
}

compileOptions {
Expand Down
4 changes: 2 additions & 2 deletions sampleapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ android {
minSdkVersion min_sdk_ver
targetSdkVersion compile_sdk_ver

versionCode 1
versionName "1.0"
versionCode = version_code
versionName = version_name
}

buildTypes {
Expand Down

0 comments on commit 3eecd28

Please sign in to comment.