We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9d6eb80 + 05cf33c commit 9f216b2Copy full SHA for 9f216b2
1 file changed
src/platforms/android/include.gradle
@@ -13,18 +13,8 @@ repositories {
13
maven { url "https://jitpack.io" }
14
}
15
16
-// https://github.com/NativeScript/android-runtime/blob/master/test-app/app/build.gradle#L206
17
-def supportVersion = project.hasProperty("supportVersion") ? project.supportVersion : "27.0.1"
18
-
19
dependencies {
20
- configurations.all {
21
- resolutionStrategy.eachDependency { details ->
22
- def requested = details.requested
23
- if (requested.group == 'com.android.support' && requested.name != 'multidex') {
24
- // com.android.support major version should match buildToolsVersion
25
- details.useVersion "$supportVersion"
26
- }
27
+ compile('com.github.yalantis:ucrop:2.2.2-native') {
+ transitive = false
28
29
- compile 'com.github.yalantis:ucrop:2.2.2-native'
30
0 commit comments