Skip to content

Commit 0f866ac

Browse files
committed
fix(android): correctly allow override of appcompat version
1 parent 2e0f7b0 commit 0f866ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin/platforms/android/include.gradle

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

22
dependencies {
3-
def androidxVersion = project.hasProperty("androidxVersion") ? project.androidxVersion : "1.1.0"
4-
implementation("androidx.appcompat:appcompat:$androidxVersion") {
3+
def androidXAppCompat = project.hasProperty("androidXAppCompat") ? project.androidXAppCompat : "1.1.0"
4+
implementation("androidx.appcompat:appcompat:$androidXAppCompat") {
55
exclude group: 'androidx.fragment'
66
}
77
def lottieVersion = project.hasProperty("lottieVersion") ? project.lottieVersion : "3.+"

0 commit comments

Comments
 (0)