Skip to content

Commit fff455e

Browse files
committed
fix(android): correctly use androidXAppCompatVersion
1 parent 46d4f2c commit fff455e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
dependencies {
3-
def androidxVersion = project.hasProperty("androidxVersion") ? project.androidxVersion : "1.1.0"
3+
def androidXAppCompatVersion = project.hasProperty("androidXAppCompatVersion") ? project.androidXAppCompatVersion : "1.1.0"
44
def androidXMaterial = project.hasProperty("androidXMaterial") ? project.androidXMaterial : "1.1.0-beta01"
55

6-
compile "androidx.appcompat:appcompat:$androidxVersion"
6+
compile "androidx.appcompat:appcompat:$androidXAppCompatVersion"
77
compile "com.google.android.material:material:$androidXMaterial"
88
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
dependencies {
3-
def androidxVersion = project.hasProperty("androidxVersion") ? project.androidxVersion : "1.1.0"
3+
def androidXAppCompatVersion = project.hasProperty("androidXAppCompatVersion") ? project.androidXAppCompatVersion : "1.1.0"
44
def androidXMaterial = project.hasProperty("androidXMaterial") ? project.androidXMaterial : "1.1.0-beta01"
55

6-
compile "androidx.appcompat:appcompat:$androidxVersion"
6+
compile "androidx.appcompat:appcompat:$androidXAppCompatVersion"
77
compile "com.google.android.material:material:$androidXMaterial"
88
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
dependencies {
3-
def androidxVersion = project.hasProperty("androidxVersion") ? project.androidxVersion : "1.1.0"
3+
def androidXAppCompatVersion = project.hasProperty("androidXAppCompatVersion") ? project.androidXAppCompatVersion : "1.1.0"
44
def androidXMaterial = project.hasProperty("androidXMaterial") ? project.androidXMaterial : "1.1.0-beta01"
55

6-
compile "androidx.appcompat:appcompat:$androidxVersion"
6+
compile "androidx.appcompat:appcompat:$androidXAppCompatVersion"
77
compile "com.google.android.material:material:$androidXMaterial"
88
}

0 commit comments

Comments
 (0)