Skip to content

Commit 0ed710d

Browse files
authored
fix(ui-zoomimage): android build fix
1 parent 06b74c9 commit 0ed710d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/zoomimage/platforms/android/include.gradle

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ repositories {
55

66
dependencies {
77
def androidXAppCompatVersion = "${ns_default_androidx_appcompat_version}"
8-
if (project.hasProperty("androidXAppCompat")) {
9-
androidXAppCompatVersion = androidXAppCompat
10-
outLogger.withStyle(Style.SuccessHeader).println "\t + using android X library androidx.appcompat:appcompat:$androidXAppCompatVersion"
11-
}
8+
def androidXAppCompatVersion = project.hasProperty("androidXAppCompat") ? project.androidXAppCompat : "1.1.0"
129
implementation "androidx.appcompat:appcompat:$androidXAppCompatVersion"
1310
}

0 commit comments

Comments
 (0)