对于我正在开发的 Android 项目,我需要*使用 Eclipse Collections 框架。所以我build.gradle
根据他们的“入门”将它集成到我的,并导入了所需的库。问题是,当我尝试在我的 Android 设备上运行该应用程序时,它失败并显示以下消息:
错误:任务':app:transformResourcesWithMergeJavaResForDebug'的执行失败。发现多个文件具有独立于操作系统的路径“LICENSE-EDL-1.0.txt”
我做了一些谷歌搜索,并在 Stackoverflow 上遇到了一些类似(尽管不相同)的问题,但没有一个建议的解决方案对我有用(其中大多数建议添加packagingOptions
到build.gradle
)。如果这很重要 - 我的应用程序使用 OpenCV4Android,我正在 Android Studio 中开发它。
此外,为了清楚起见,没有 Eclipse-Collections 添加一切正常。
这是我的应用程序的build.gradle
:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.example.android.coftest"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'org.eclipse.collections:eclipse-collections-api:9.0.0'
compile 'org.eclipse.collections:eclipse-collections:9.0.0'
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:support-v4:26.+'
compile 'com.android.support:support-vector-drawable:26.+'
testCompile 'junit:junit:4.12'
compile project(':openCVLibrary330')
}
* 这不是必须的,但它使我的代码更加简单和优雅,我真的很想拥有它。