解决依赖冲突 android.support.v4.animation.AnimatorCompatHelper 记录一下

configurations.all {
    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
        def requested = details.requested
        if (requested.group == 'com.android.support') {
            if (!requested.name.startsWith("multidex")) {
                details.useVersion '26.0.2'
            }
        }
    }
}

你可能感兴趣的:(IT,Android)