android - flutter 任务 ':app:transformDexArchiveWithExternalLibsDexMergerForDebug' 执行失败

标签 android firebase flutter dart gradle

我正在尝试使用 firebase 并按照确切的说明进行操作,但是当我运行我的应用程序时出现此错误:

What went wrong:
Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.
> java.lang.RuntimeException: java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

* Get more help at https://help.gradle.org

BUILD FAILED in 10s

这是我的 build.gradle 文件:

buildscript {
    repositories {
        google()
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath 'com.google.gms:google-services:4.0.1'

    }
}

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

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(':app')
}

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

这是我的 android\app\build.gradle:

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
    localPropertiesFile.withReader('UTF-8') { reader ->
        localProperties.load(reader)
    }
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
    throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
    compileSdkVersion 27

    lintOptions {
        disable 'InvalidPackage'
    }

    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId "com.both"
        minSdkVersion 16
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            // TODO: Add your own signing config for the release build.
            // Signing with the debug keys for now, so `flutter run --release` works.
            signingConfig signingConfigs.debug
        }
    }
}

flutter {
    source '../..'
}

dependencies {
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

configurations.all {
    resolutionStrategy {
        force 'com.google.android.gms:play-services-location:15.0.1'
    }
}

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

我试过清理和重建,但没有用。我还在 build.gradle 文件(模块:app)中尝试了 multiDexEnabled true。

有什么帮助吗? 提前致谢。

最佳答案

由于 flutter 默认的 min sdk 版本为 16,你必须在你的应用程序级 gradle 文件中添加以下依赖项以启用 multidex,如文档中所述 https://developer.android.com/studio/build/multidex

android {
    defaultConfig {
        ...
        minSdkVersion 16 
        targetSdkVersion 27
        multiDexEnabled true
    }
    ...
}

dependencies {
  compile 'com.android.support:multidex:1.0.3' 
}

我试过上面的解决方案,它对我有用

关于android - flutter 任务 ':app:transformDexArchiveWithExternalLibsDexMergerForDebug' 执行失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52264534/

相关文章:

Android httpclient文件上传数据损坏和超时问题

Android中间件c程序: Unable to create directory,只读文件系统

dart - Flutter Navigator.pushNamed() 自定义路由动画

javascript - 使用 ElasticSearch 连接查询

ios - 从 URL 加载的图像在 UITableView 滚动时发生变化

listview - 使用显示对话框和文本字段更新 Flutter 中的单个 ListView 项

android - AndroidManifest.xml中缺少AdActivity

android - 无需身份验证即可使用 google firebase 存储

android - 更改搜索 View 中的默认搜索图标位置

android - 带系统 : Ignoring header X-Firebase-Locale because its value was null