We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b74c9 commit 0ed710dCopy full SHA for 0ed710d
packages/zoomimage/platforms/android/include.gradle
@@ -5,9 +5,6 @@ repositories {
5
6
dependencies {
7
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
- }
+ def androidXAppCompatVersion = project.hasProperty("androidXAppCompat") ? project.androidXAppCompat : "1.1.0"
12
implementation "androidx.appcompat:appcompat:$androidXAppCompatVersion"
13
}
0 commit comments