Skip to content

Commit 2b8b98a

Browse files
committed
Update poolakey version
1 parent bb1295e commit 2b8b98a

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

poolakeyunitysdk-android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ dependencies {
3232
implementation 'androidx.appcompat:appcompat:1.4.1'
3333
implementation 'com.google.android.material:material:1.5.0'
3434
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
35-
implementation "com.github.cafebazaar.Poolakey:poolakey:2.0.0"
35+
implementation "com.github.cafebazaar.Poolakey:poolakey:$library.poolakey_version"
3636
implementation project(path: ':poolakey')
3737
}

poolakeyunitysdk-android/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3+
apply from: "$rootDir/versions.gradle"
34
repositories {
45
google()
56
mavenCentral()
@@ -12,6 +13,7 @@ buildscript {
1213
}
1314
}
1415
allprojects {
16+
apply from: "$rootDir/versions.gradle"
1517
repositories {
1618
google()
1719
mavenCentral()

poolakeyunitysdk-android/poolakey/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
apply plugin: 'com.android.library'
22
apply plugin: 'kotlin-android'
33
ext {
4-
poolakey_version = '2.0.0'
54
kotlin_version = '1.4.20'
65
}
76
android {
@@ -15,10 +14,10 @@ android {
1514

1615
buildTypes {
1716
debug {
18-
buildConfigField "String", 'POOLAKEY_VERSION', "\"{$poolakey_version}\""
17+
buildConfigField "String", 'POOLAKEY_VERSION', "\"{$library.poolakey_version}\""
1918
}
2019
release {
21-
buildConfigField "String", 'POOLAKEY_VERSION', "\"{$poolakey_version}\""
20+
buildConfigField "String", 'POOLAKEY_VERSION', "\"{$library.poolakey_version}\""
2221
}
2322
}
2423

@@ -34,7 +33,7 @@ android {
3433

3534
dependencies {
3635
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
37-
implementation "com.github.cafebazaar.Poolakey:poolakey:$poolakey_version"
36+
implementation "com.github.cafebazaar.Poolakey:poolakey:$library.poolakey_version"
3837
}
3938

4039
/*task deleteJar(type: Delete) {
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ext {
2+
library = [
3+
poolakey_version: '2.2.0'
4+
]
5+
}

0 commit comments

Comments
 (0)