无法在 Android Studio 3.0 中合并 Dex

Unable to merge Dex in Android Studio 3.0

我是 Android Studio 的初学者。

每次我在 Google Tango 平板电脑上尝试 运行 我的应用程序时,都会出现以下错误:

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

这是我的应用程序模块 build.gradle 文件...

    apply plugin: 'com.android.application'

    android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.example.cs15yyo.myfyp"
        minSdkVersion 19
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        //multiDexEnabled true
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile 'com.google.tango:sdk-base:1.55'
    compile 'com.google.tango:support-base:1.54'
    compile 'com.google.tango:sdk-depth-interpolation:1.55'
    compile 'com.google.tango:sdk-transform-helpers:1.55'
    compile 'org.rajawali3d:rajawali:1.1.668@aar'
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    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'
    implementation project(':tango_support_java_lib')
    implementation project(':tango_ux_support_library')
}

这是我的项目 build.gradle 文件...

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

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0'


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

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

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

这是我的 tango_support_java_lib 模块 build.gradle 文件...

configurations.maybeCreate("default")
artifacts.add("default", file('tango_support_java_lib.aar'))

这是我的 tango_ux_support_library 模块 build.gradle 文件...

configurations.maybeCreate("default")
artifacts.add("default", file('tango_ux_support_library.aar'))

尝试的解决方案

查看 Whosebug 中的现有解决方案,我尝试了以下方法....

所有人都让我失望了,真烦人。

这是我最后一年计算机科学项目的作品。

我已经解决了这个问题,事实证明,问题的原因是在编写必要的依赖项(在模块 build.gradle 文件中)之后将 JAR/AAR 文件作为库导入相同的库;因此,删除 JAR/AAR 文件后,我的应用程序能够 运行