Add following code to app build.gradle:
configurations.all{
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support'){
if (!requested.name.startsWith("mutlidex")){
details.useVersion '25.0.1'
}
}
}
}
No comments:
Post a Comment