ChatGPT解决这个技术问题 Extra ChatGPT

Android 依赖在编译和运行时有不同的版本

将 Android Studio 从 Canary 3 更新到 Canary 4 后,在构建时抛出以下错误。

Android 依赖 'com.android.support:support-support-v4' 对于编译 (25.2.0) 和运行时 (26.0.0-beta2) 类路径有不同的版本。您应该通过 DependencyResolution 手动设置相同的版本。

我在整个项目中进行了完整搜索,但没有使用版本 25.1.0

应用程序构建.gradle

android {
compileSdkVersion 26
buildToolsVersion '26.0.0'


defaultConfig {
    applicationId "com.xxx.xxxx"
    minSdkVersion 14
    targetSdkVersion
    versionCode 1
    versionName "1.0"
    multiDexEnabled true

}


buildTypes {
    debug {
        debuggable true
    }
    release {
        debuggable false
        minifyEnabled true
        shrinkResources true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }

    lintOptions {
        abortOnError false
    }

}}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation project(':core')
implementation com.google.android.gms:play-services-gcm:9.0.0'

implementation('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') {
    transitive = true
}
implementation 'com.android.support:multidex:1.0.1'
implementation 'com.flurry.android:analytics:7.0.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0'
implementation 'com.jakewharton:butterknife:8.6.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
}

库-build.gradle:

apply plugin: 'com.android.library'
android {
compileSdkVersion 26
buildToolsVersion '26.0.0'

defaultConfig {
    minSdkVersion 14
    targetSdkVersion
    versionCode 1
    versionName "1.0"
}

}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation files('libs/model.jar')
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:percent:26.0.0-beta2'
implementation 'com.android.support:appcompat-v7:26.0.0-beta2'
implementation 'com.android.support:support-core-utils:26.0.0-beta2'

implementation 'com.squareup.retrofit2:retrofit:2.0.2'
implementation 'com.squareup.picasso:picasso:2.4.0'
implementation 'com.squareup.retrofit2:converter-gson:2.0.2'
implementation 'com.squareup.okhttp3:logging-interceptor:3.2.0'
implementation 'uk.co.chrisjenx:calligraphy:2.2.0'
implementation 'com.google.code.gson:gson:2.2.4'
implementation 'com.android.support:design:26.0.0-beta2'
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.1'

}

注意:项目在 Canary 3 中构建良好

我也面临同样的问题,因为我在我的应用程序中使用了两个模块,所以请确保您对所有 gradle 文件使用相同的版本代码。

T
Tim Cooper

在您的构建脚本(build.gradle root)中使用此代码:

subprojects {
  project.configurations.all {
     resolutionStrategy.eachDependency { details ->
        if (details.requested.group == 'com.android.support'
              && !details.requested.name.contains('multidex') ) {
           details.useVersion "version which should be used - in your case 26.0.0-beta2"
        }
     }
  }
}

它对我有用,记得将 details.useVersion 更改为版本号,如果你只是复制并粘贴它会失败
最好的,适用于 rn 0.55,gradle 4.1,构建 gradle tools 3.0.1
确保包含 !details.requested.name.contains('multidex') 确实帮助了我。
我试过这个,但它只适用于 com.android.support 冲突。它不适用于 com.google.firebase:firebase-analytics 冲突。 “包含”似乎匹配了太多的包。我在 this post 中使用了更简单的解决方案来解决所有冲突,并且效果很好。
@user3908686 解决了问题,但请解释一下,为什么我们需要添加这个?
Y
Yayo Arellano

我有同样的错误,解决我的问题是什么。在我的库中,我使用“api”而不是使用编译或实现。所以最后我的依赖项:

dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
api files('libs/model.jar')
testApi 'junit:junit:4.12'
api 'com.android.support:percent:26.0.0-beta2'
api 'com.android.support:appcompat-v7:26.0.0-beta2'
api 'com.android.support:support-core-utils:26.0.0-beta2'

api 'com.squareup.retrofit2:retrofit:2.0.2'
api 'com.squareup.picasso:picasso:2.4.0'
api 'com.squareup.retrofit2:converter-gson:2.0.2'
api 'com.squareup.okhttp3:logging-interceptor:3.2.0'
api 'uk.co.chrisjenx:calligraphy:2.2.0'
api 'com.google.code.gson:gson:2.2.4'
api 'com.android.support:design:26.0.0-beta2'
api 'com.github.PhilJay:MPAndroidChart:v3.0.1'
}

您可以在此链接 https://stackoverflow.com/a/44493379/3479489 中找到有关“api”、“实施”的更多信息


所有的 android studio 都建议使用 implementation.. 而这个另类的解决方案是有效的。安卓工作室的谷歌工程师需要一个教训来向世界学习。多么令人沮丧的工具
它没有解决问题,消息说:“Android依赖'......'有不同的编译版本”
为我工作。谢谢
@KeithLoughnane 这不是坏习惯,是正确的做法和文档推荐的方式
@YayoArellano 实施是在绝对需要的情况下明智地使用 api 推荐的。这是把所有东西都扔到墙上,看看有什么坚持编程。其中一些可能需要api,但不是全部。你暴露得太多了。
j
jdonmoyer

通过为您的项目运行正确的 gradle -q dependencies 命令,您应该能够准确地看到哪个依赖项将奇数版本作为传递依赖项拉入,如下所述:

https://docs.gradle.org/current/userguide/userguide_single.html#sec:listing_dependencies

一旦你追踪到是什么把它拉进来,你可以在你的 gradle 文件中添加一个排除到该特定依赖项的内容,例如:

implementation("XXXXX") {
    exclude group: 'com.android.support', module: 'support-compat'
}

嗨,我运行了 gradle 依赖命令,并在此处发布了屏幕截图 url,imgur.com/dL35BaN。我从不在我的项目中使用 Firebase。在 gcm 中添加了该行,但它不起作用
@DroidLearner 我可能遗漏了一些东西,但我在您发布的屏幕截图中没有看到对 com.android.support:support-compat 的任何引用。该屏幕截图中还有一个警告,它指的是“编译”配置,我在 OP 的 gradle 文件中看不到该配置。它很可能来自 :core 子模块。你可以从那里发布相关的gradle信息吗?
嗨,在这里发布带有依赖关系树的整个 gradle 文件.. app gradle 文件-> gist.github.com/anonymous/93affc0d75eb96b59f9fde51332b9716 核心 gradle 文件 ->gist.github.com/anonymous/5c85031f26ff766109061ab1f00b833d 依赖关系树 ->gist.github.com/anonymous/71dd33b6fa4dc63dd357889e8aff01ee 希望这会有所帮助。
看起来旧版本的库正在被 firebase 引入,而这又是 gms 的传递依赖。您可以通过在任何其他依赖项之前添加: implementation 'com.android.support:support-v4:26.0.0-beta2' 来实现此功能。长期关闭传递依赖以支持显式或使用 resolutionStrategy (docs.gradle.org/current/dsl/…) 可能是更好的方法。
谢谢。不知何故设法修复了传递依赖。 Gradle 构建成功。在运行时它显示所有库类的错误。错误:包retrofit2 不存在错误:包android.support.v7.app 不存在错误:包com.google.gson 不存在。在编译时它没有显示任何错误。
S
Stefano Solinas - obsidianart

经过很多时间并从一个比我更了解 android 的朋友那里得到帮助:app/build.gradle

android {
    compileSdkVersion 27

    // org.gradle.caching = true

    defaultConfig {
        applicationId "com.cryptoviewer"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 196
        versionName "16.83"
        // ndk {
        //     abiFilters "armeabi-v7a", "x86"
        // }
    }

和依赖

dependencies {
    implementation project(':react-native-camera')
   //...
    implementation "com.android.support:appcompat-v7:26.1.0" // <= YOU CARE ABOUT THIS
    implementation "com.facebook.react:react-native:+"  // From node_modules
}

在 build.gradle

allprojects {
   //...
    configurations.all {
        resolutionStrategy.force "com.android.support:support-v4:26.1.0"
    }

在 gradle.properties 中

android.useDeprecatedNdk=true
android.enableAapt2=false
org.gradle.jvmargs=-Xmx4608M

resolutionStrategy.force 是唯一对我有用的东西。谢谢!
D
Dacre Denny

我的答案是将其添加到我的 build.gradle 文件中:

configurations.all {
  resolutionStrategy.eachDependency { details ->
      if (details.requested.group == 'com.android.support'
              && !details.requested.name.contains('multidex') ) {
          details.useVersion "26.1.0"
      }
  }
}

就我而言,将解决策略包含在 configurations.all { .. } 块中是必要的。我将 configurations.all 块直接放入了我的 app/build.gradle 文件中(即 configurations.all 没有嵌套在其他任何东西中)


E
Erik Cederstrand

这对我有用:

在依赖项部分的 app/build.gradle 中添加以下行:

implementation "com.android.support:appcompat-v7:27.1.0"

:27.1.1 在我的情况下


d
dileep krishnan

将此代码添加到您的项目级 build.gradle 文件中。

subprojects {
    project.configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.android.support'
                    && !details.requested.name.contains('multidex') ) {
                details.useVersion "version which should be used - in your case 28.0.0-beta2"
            }
        }
    }
}

示例代码:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
        maven { url 'https://maven.fabric.io/public' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0'
        classpath 'io.fabric.tools:gradle:1.31.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files

    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}


subprojects {
    project.configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.android.support'
                    && !details.requested.name.contains('multidex') ) {
                details.useVersion "28.0.0"
            }
        }
    }
}

A
Atul Vasudev A

如果有人在 2019 年遇到此依赖问题,请将 Android Studio 更新到 3.4 或更高版本


A
Ajani Eniola

我通过在 android/build.gradle 文件中升级我的 gradle 依赖项来解决它:classpath 'com.android.tools.build:gradle:3.3.1' (我之前使用的是 3.2 版。


D
DILIP KOSURI

我按照上面提到的 Eddi 解决了这个问题,

 resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.android.support'
                    && !details.requested.name.contains('multidex') ) {
                details.useVersion "26.1.0"
            }
        }

i
i am E

将我的冲突依赖项从实现切换到 api 就可以了。这是mindorks的一篇很好的文章,解释了差异。

https://medium.com/mindorks/implementation-vs-api-in-gradle-3-0-494c817a6fa

编辑:

这也是我的依赖解决方案

 subprojects {
        project.configurations.all {
            resolutionStrategy.eachDependency { details ->
                if (details.requested.group == 'com.android.support'
                        && !details.requested.name.contains('multidex')) {
                    details.useVersion "28.0.0"
                }
                if (details.requested.group == 'com.google.android.gms'
                        && details.requested.name.contains('play-services-base')) {
                    details.useVersion "15.0.1"
                }
                if (details.requested.group == 'com.google.android.gms'
                        && details.requested.name.contains('play-services-tasks')) {
                    details.useVersion "15.0.1"
                }
            }
        }
    }

A
Ali Imran

在您的库项目中查看将 compileSdkVersion 和 targetSdkVersion 版本设置为与您的应用程序相同的级别

android {
    compileSdkVersion 28

    defaultConfig {
        consumerProguardFiles 'proguard-rules.txt'
        minSdkVersion 14
        targetSdkVersion 28
    }
}

还使所有依赖项处于同一级别


F
Fredrick Reuben

我注释掉//api 'com.google.android.gms:play-services-ads:15.0.1'它在同步后对我有用


t
tushar

只需在 build.gradle 文件中添加这些行

resolutionStrategy.force “com.android.support:support-media-compat:26.0.0-beta2”

resolutionStrategy.force “com.android.support:support-v4:26.0.0-beta2”


D
Divyanshu Kumar

就我而言,我在两个不同的模块中有两个不同版本的以下实现,所以我将两个实现都更改为版本,即:6.0.2 并且它工作。您可能还需要编写依赖项解析,请参阅接受的答案。

应用模块

implementation 'com.karumi:dexter:5.0.0'

公共模块

implementation 'com.karumi:dexter:6.0.2'

h
hassan bazai

我有同样的错误,我通过将此代码添加到 gradle.properties 文件来修复它。

android.enableJetifier=true

F
Farido mastr

configuration.all { resolutionStrategy.force //"com.android.support:appcompat-v7:25.3.1" //这里把出错的库和你要使用的版本一起放 }

将此添加到 allprojects 内的 gradle(项目)


S
Sarmad Shah

将硬编码版本替换为 + 示例:

implementation 'com.google.android.gms:play-services-base:+'
implementation 'com.google.android.gms:play-services-maps:+'

不完全是最佳实践,因为这可能会导致图书馆有点远离你。前任。他们改变了在新版本中完成工作的方式,突然之间你的代码就不起作用了。虽然您应该努力使用最新版本,但您应该先测试后手动设置版本号,以防止不必要的崩溃和错误。
不是一个好习惯。除了@JonahStarling 所说的,如果关闭离线功能,也会影响 Gradle 构建性能。

关注公众号,不定期副业成功案例分享
关注公众号

不定期副业成功案例分享

领先一步获取最新的外包任务吗?

立即订阅