Skip to content

Commit a6e69dc

Browse files
committed
build: bump library version to 1.7.0
1 parent 19ffd56 commit a6e69dc

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88
minSdkVersion 16
99
targetSdkVersion 31
1010
versionCode 1
11-
versionName "1.0"
11+
versionName "${lib_version}"
1212
}
1313
buildTypes {
1414
release {

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4+
ext.lib_version = '1.7.0'
5+
46
ext.kotlin_version = '1.6.10'
7+
58
repositories {
69
google()
710
mavenCentral()

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ afterEvaluate {
3636
release(MavenPublication) {
3737
from components.release
3838
groupId = 'com.github.tobiasschuerg'
39-
version = '1.6.0'
39+
version = "${lib_version}"
4040
}
4141
}
4242
}

0 commit comments

Comments
 (0)