1. 程式人生 > >Android dependency 'com.android.support:recyclerview-v7' has different version for the compile

Android dependency 'com.android.support:recyclerview-v7' has different version for the compile

Error:Execution failed for task ':app:preDebugBuild'.
> Android dependency 'com.android.support:recyclerview-v7' has different version for the compile (25.3.1) and runtime (25.4.0) classpath. You should manually set the same version via DependencyResolution

 

最外層專案的build.gradle

subprojects {
    project.configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.android.support'
                    && !details.requested.name.contains('multidex') ) {
                //統一版本號
                details.useVersion "25.4.0"
            }
        }
    }
}