File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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:$l ibrary . poolakey_version "
3636 implementation project(path : ' :poolakey' )
3737}
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22buildscript {
3+ apply from : " $rootDir /versions.gradle"
34 repositories {
45 google()
56 mavenCentral()
@@ -12,6 +13,7 @@ buildscript {
1213 }
1314}
1415allprojects {
16+ apply from : " $rootDir /versions.gradle"
1517 repositories {
1618 google()
1719 mavenCentral()
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22apply plugin : ' kotlin-android'
33ext {
4- poolakey_version = ' 2.0.0'
54 kotlin_version = ' 1.4.20'
65}
76android {
@@ -15,10 +14,10 @@ android {
1514
1615 buildTypes {
1716 debug {
18- buildConfigField " String" , ' POOLAKEY_VERSION' , " \" {$poolakey_version }\" "
17+ buildConfigField " String" , ' POOLAKEY_VERSION' , " \" {$l ibrary . poolakey_version }\" "
1918 }
2019 release {
21- buildConfigField " String" , ' POOLAKEY_VERSION' , " \" {$poolakey_version }\" "
20+ buildConfigField " String" , ' POOLAKEY_VERSION' , " \" {$l ibrary . poolakey_version }\" "
2221 }
2322 }
2423
@@ -34,7 +33,7 @@ android {
3433
3534dependencies {
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:$l ibrary . poolakey_version "
3837}
3938
4039/* task deleteJar(type: Delete) {
Original file line number Diff line number Diff line change 1+ ext {
2+ library = [
3+ poolakey_version : ' 2.2.0'
4+ ]
5+ }
You can’t perform that action at this time.
0 commit comments