1. 程式人生 > >關於Android中匯入依賴與版本不和的解決辦法

關於Android中匯入依賴與版本不和的解決辦法

在你的app gradle中新增

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

其中details.useVersion'27.1.1'與你的版本號一致

此方法是一個獨立的方法,不存在與其他方法中

可以解決匯入的依賴與AS的版本不一致導致的一系列問題。