Browse Source

resolve android support library versions clash

Oleksandr Kucherenko 6 years ago
parent
commit
31ec6a0fbc
1 changed files with 14 additions and 0 deletions
  1. 14
    0
      example/android/build.gradle

+ 14
- 0
example/android/build.gradle View File

37
         }
37
         }
38
     }
38
     }
39
 }
39
 }
40
+
41
+
42
+subprojects {
43
+    configurations.all {
44
+        resolutionStrategy {
45
+            eachDependency { details ->
46
+                /* Override by group name */
47
+                switch (details.requested.group) {
48
+                    case 'com.android.support': details.useVersion '27.+'; break
49
+                }
50
+            }
51
+        }
52
+    }
53
+}