Force use of latest support library

This commit is contained in:
M66B 2017-11-17 13:43:59 +01:00
parent b855d0cc5d
commit bca0adf08e
1 changed files with 11 additions and 0 deletions

View File

@ -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
}