【问题标题】:com.android.build.api.transform.TransformException: Error while generating the main dex listcom.android.build.api.transform.TransformException:生成主 dex 列表时出错
【发布时间】:2018-08-24 11:23:21
【问题描述】:

我正在一个 react native 项目中实现 react-native-firebase 通知库。 这是我的安卓 gradle.build

buildscript {
    repositories {
        google()
        jcenter()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
        maven { url 'https://maven.fabric.io/public' }
        flatDir {
            dirs 'libs'
        }
    }
    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
        classpath 'com.android.tools.build:gradle:3.1.4'
        classpath 'com.google.gms:google-services:4.0.1'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        mavenLocal()
        google()
        jcenter()
        maven { url "$rootDir/../node_modules/react-native/android" }
        maven { url "https://maven.google.com" }
        flatDir {
            dirs 'libs'
        }
    }
}

和应用gradle.build

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')

    implementation(project(':react-native-maps')) {
        exclude group: 'com.google.android.gms', module: 'play-services-base'
        exclude group: 'com.google.android.gms', module: 'play-services-maps'
    }

   implementation 'com.android.support:multidex:1.0.3'
    implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
        transitive = true;
    }
    implementation "com.android.support:appcompat-v7:27.1.0"
    implementation 'com.facebook.react:react-native:+'

    implementation(project(':react-native-firebase'))
    implementation "com.google.android.gms:play-services-base:15.0.1"
    implementation "com.google.firebase:firebase-core:16.0.1"
}

task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.compile
    into 'libs'
}

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

com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true

生成构建时出现异常。我玩过更改版本但结果相同。 这是一个例外

* What went wrong:
Execution failed for task ':app:transformClassesWithMultidexlistForDebug'.
> com.android.build.api.transform.TransformException: Error while generating the main dex list.

【问题讨论】:

  • 你找到解决办法了吗?

标签: android react-native react-native-android gradlew react-native-firebase


【解决方案1】:

在您应用的 gradle.build 文件中添加 implementation "com.android.support:design:27.1.0"

【讨论】:

    猜你喜欢
    • 2019-04-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-05-01
    • 1970-01-01
    • 2016-10-30
    • 1970-01-01
    相关资源
    最近更新 更多