使用操作系统独立路径“ META-INF / LICENSE”找到了多个文件
构建应用程序时,出现以下错误: 错误:任务':app:transformResourcesWithMergeJavaResForDebug'的执行失败。使用操作系统独立路径“ META-INF / LICENSE”找到了多个文件 这是我的build.gradle文件: apply plugin: 'com.android.application' apply plugin: 'kotlin-android' android { compileSdkVersion 25 buildToolsVersion "25.0.2" defaultConfig { applicationId "cn.sz.cyrus.kotlintest" minSdkVersion 14 targetSdkVersion 25 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" javaCompileOptions{ annotationProcessorOptions{ includeCompileClasspath = true } } multiDexEnabled true } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), …