mirror of
https://github.com/M66B/NetGuard.git
synced 2025-01-03 13:54:09 +00:00
Force use of latest support library
This commit is contained in:
parent
b855d0cc5d
commit
bca0adf08e
1 changed files with 11 additions and 0 deletions
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 a new issue