mirror of https://github.com/M66B/NetGuard.git
Force use of latest support library
This commit is contained in:
parent
b855d0cc5d
commit
bca0adf08e
11
build.gradle
11
build.gradle
|
@ -25,6 +25,17 @@ allprojects {
|
|||
}
|
||||
}
|
||||
|
||||
subprojects {
|
||||
project.configurations.all {
|
||||
resolutionStrategy.eachDependency { details ->
|
||||
if (details.requested.group == 'com.android.support'
|
||||
&& !details.requested.name.contains('multidex')) {
|
||||
details.useVersion "27.0.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
task clean(type: Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue