Android事情错误:无法合并dex

时间:2018-03-09 15:56:33

标签: android kotlin android-studio-3.0 android-things

我正在使用Android东西和firebase以及通过手机通知

进行运动传感器相机的项目
  

错误:任务执行失败   ':移动:transformDexArchiveWithExternalLibsDexMergerForDebug&#39 ;.   com.android.builder.dexing.DexArchiveMergerException:无法合并dex

我添加" multidexenabled true"但没有解决方案

这是App level gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 27
    buildToolsVersion '27.0.3'
    defaultConfig {
        applicationId "za.co.riggaroo.motioncamera"
        minSdkVersion 27
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner 
"android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true //Added this
    }
    buildTypes {
        release {
           minifyEnabled false
           proguardFiles getDefaultProguardFile('proguard-android.txt'), 
'proguard-rules.pro'
        }
    }
}
ext {
    archVersion = '1.1.0'
    playServices = "11.8.0"
}
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation "com.google.firebase:firebase-core:${playServices}"
    implementation "com.google.firebase:firebase-database:${playServices}"
    implementation "com.google.firebase:firebase-storage:${playServices}"
    implementation "com.google.firebase:firebase-auth:${playServices}"
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    implementation "com.android.support:animated-vector-drawable:27.1.0"
    implementation "com.android.support:support-v4:27.1.0"
    implementation "com.android.support:support-media-compat:27.1.0"
    implementation "com.android.support:cardview-v7:27.1.0"
    androidTestImplementation 'com.android.support.test.espresso:espresso-
core:3.0.1'
    compileOnly 'com.google.android.things:androidthings:0.7-devpreview'
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    implementation "android.arch.lifecycle:runtime:${archVersion}"
    implementation "android.arch.lifecycle:extensions:${archVersion}"
    annotationProcessor "android.arch.lifecycle:compiler:${archVersion}"
    implementation "com.android.support:appcompat-v7:27.1.0"
    compile 'com.android.support:support-vector-drawable:27.1.0'
}

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

0 个答案:

没有答案