昨天,我的应用程序构建正确,而今天,在我无法再构建任何东西的情况下,我遇到了以下错误:

Android dependency 'com.google.android.gms:play-services-stats' has >different version for the compile (16.0.1) and runtime (17.0.0) >classpath. You should manually set the same version via >DependencyResolution

我试着用"com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck=true"绕过这个问题,多次清理这个项目,但错误仍然存在.

我的应用/构建.gradle文件:

apply plugin: "com.android.application"
apply plugin: "com.android.application"
apply plugin: "io.fabric"

import com.android.build.OutputFile

project.ext.react = [
    entryFile: "index.js"
]

apply from: "../../node_modules/react-native/react.gradle"

/**
 * Set this to true to create two separate APKs instead of one:
 *   - An APK that only works on ARM devices
 *   - An APK that only works on x86 devices
 * The advantage is the size of the APK is reduced by about 4MB.
 * Upload all the APKs to the Play Store and people will download
 * the correct one based on the CPU architecture of their device.
 */
def enableSeparateBuildPerCPUArchitecture = false

/**
 * Run Proguard to shrink the Java bytecode in release builds.
 */
def enableProguardInReleaseBuilds = false

android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    buildToolsVersion rootProject.ext.buildToolsVersion

    defaultConfig {
        applicationId "com.yapero"
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        multiDexEnabled true
        versionCode 743
        versionName "1.74"
        ndk {
            abiFilters "armeabi-v7a", "x86"
        }
        versionNameSuffix '3'
    }
    splits {
        abi {
            reset()
            enable enableSeparateBuildPerCPUArchitecture
            universalApk false  // If true, also generate a universal APK
            include "armeabi-v7a", "x86", "arm64-v8a"
        }
    }
    buildTypes {
        release {
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
        }
    }
    packagingOptions {
        exclude 'META-INF/main.kotlin_module'
        exclude 'META-INF/-no-jdk.kotlin_module'
    }
    dexOptions {
        javaMaxHeapSize "4g"
    }
    // applicationVariants are e.g. debug, release
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            // For each separate APK per architecture, set a unique version code as described here:
            // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
            def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3]
            def abi = output.getFilter(OutputFile.ABI)
            if (abi != null) {  // null for the universal-debug, universal-release variants
                output.versionCodeOverride =
                        versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
            }
        }
    }
}

dependencies {
    implementation project(':@segment_analytics-react-native')
    implementation project(':react-native-webview')
    implementation project(':react-native-version-check')
    implementation project(':react-native-firebase')
    implementation(project(':react-native-firebase')) {   
       transitive = false
   }
    implementation('com.crashlytics.sdk.android:crashlytics:2.9.5@aar') {transitive = true}
    //implementation project(':react-native-version-check')
    implementation project(':react-native-maps')
    implementation project(':react-native-intercom')
    implementation 'io.intercom.android:intercom-sdk-base:5.+'
    implementation 'io.intercom.android:intercom-sdk-fcm:5.+'
    implementation project(':react-native-fbsdk')
    implementation project(':react-native-device-info')
    implementation project(':react-native-appsflyer')
    implementation project(':react-native-text-input-reset')
    implementation project(':react-native-linear-gradient')
    implementation project(':react-native-fast-image')
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
    implementation "com.facebook.react:react-native:+"  // From node_modules
    implementation "com.google.android.gms:play-services-base:16.1.0"
    implementation "com.google.firebase:firebase-core:16.0.8"
    implementation "com.google.firebase:firebase-auth:16.2.1"
    implementation "com.google.firebase:firebase-firestore:17.1.5"
    implementation "com.google.firebase:firebase-messaging:17.5.0"
    implementation 'me.leolin:ShortcutBadger:1.1.21@aar'
    implementation 'com.android.support:multidex:1.0.0'
}

// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.compile
    into 'libs'
}

apply plugin: 'com.google.gms.google-services'

我的身材.格雷德尔:

buildscript {
    ext {
        buildToolsVersion = "28.0.2"
        minSdkVersion = 16
        compileSdkVersion = 28
        targetSdkVersion = 27
        supportLibVersion = "28.0.0"
    }
    repositories {
        google()
        jcenter()
        maven {
            url 'https://maven.fabric.io/public'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        classpath 'com.google.gms:google-services:4.2.0'
        classpath 'io.fabric.tools:gradle:1.25.4'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        mavenLocal()
        google()
        jcenter()
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url "$rootDir/../node_modules/react-native/android"
        }
    }
}


task wrapper(type: Wrapper) {
    gradleVersion = '4.7'
    distributionUrl = distributionUrl.replace("bin", "all")
}

有人知道如何纠正或绕过此版本判断吗?问我你是否需要更多信息.

推荐答案

This comment on github为你(和我)的问题提供了答案:

依赖项(本例中为react-native-device-info)使用的是其依赖项之一的最新版本,而不是固定/固定版本.当google services的新版本为released yesterday时,它导致构建将新版本拉入device-info,从而导致与正确定位所需版本的其他依赖项发生冲突.

解决方案是按照你的android/app/build.gradle页链接帖子中的解释:

implementation(project(":react-native-device-info"),  {
  exclude group: "com.google.android.gms"
})
implementation "com.google.android.gms:play-services-gcm:16.0.0"

并可能用可能存在相同问题的任何其他依赖项替换react-native-device-info(它们将包括像implementation "com.google.android.gms:play-services-gcm:+"这样的行,这取决于谷歌gcm的最新版本).

React-native相关问答推荐

PubNubReact无法工作,因为它已被废弃

到达安装依赖项时 EAS 构建错误

将屏幕标题更新为所选标签导航的标题

是否有用于react-native 的简单同步存储选项?

如何在 react-native 中设置 Onpress On Textinput

在react-native 应用程序中使用中继

如何在 React Native 的无状态功能组件中扩展原生组件的 props TypeScript 接口?

ReactJS toLowerCase 不是一个函数

React Native 错误:Animated.event now requires a second argument for options

React Native 在升级到 0.56 版本后崩溃

使用 Android NDK 在 C 或 C++ 中创建 react-native Native Module?

如何在 React Native 中按下按钮时更改文本值?

eslint Parsing error: Unexpected token =

React Native - NSNumber 无法转换为 NSString

Fragment片段内的react-native

无法加载 exp:// 出了点问题

Console.error:no permission handler detected

Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.

Native Script 与 react native 和 ionic 框架的区别

如何在android studio中导入react native元素