diff --git a/build.gradle b/build.gradle index 1338cee3..e93e25f7 100644 --- a/build.gradle +++ b/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 }