在OS独立路径org / springframework中找到了多个文件

时间:2018-01-24 16:08:05

标签: java android android-studio

嘿伙计我正在使用android studio 3.0.1,因为我添加了maven依赖项,所以在运行我的项目时遇到了问题。

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.example.jake.myapplication"
        minSdkVersion 23
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/ASL2.0'
    }


}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    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'
}

allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}

dependencies {
    implementation 'com.android.support.constraint:constraint-layout:+'
}
dependencies {
    implementation 'com.github.PhilJay:MPAndroidChart:v2.2.4'
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'com.github.pabloo99.xmlsoccer:xmlsoccer:0.0.6'
}

当我现在运行此操作时,我收到错误:错误:任务执行失败':app:transformResourcesWithMergeJavaResForDebug'。

  

在OS独立路径'org / springframework / web / servlet / config / spring-mvc-3.0.xsd'中找到了多个文件

我已经在其他地方查看了stackoverflow并找到了解决方案,但人们似乎没有org / springframework错误。我已经尝试删除.gradle文件并清理和构建,但是当我重建项目时,我收到错误:错误:任务执行失败':app:transformDexArchiveWithExternalLibsDexMergerForDebug'。

  

java.lang.RuntimeException:com.android.builder.dexing.DexArchiveMergerException:无法合并dex

我认为可以解决:multiDexEnabled true

关于如何使这项工作的任何想法?如果您需要更多信息,请告诉我。我对此很新。非常感谢你。

0 个答案:

没有答案