Найдено более одного независимого пути ОС
Я получаю эту ошибку при запуске моего приложения:
More than one file was found with OS independent path 'META-INF/INDEX.LIST'
Может кто-то пожалуйста, помогите мне?
Спасибо.
Что я уже пробовал:
//Project gradle buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.1.1' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir } //app gradle apply plugin: 'com.android.application' android { compileSdkVersion 27 defaultConfig { applicationId "com.example.rogx10.gps" minSdkVersion 17 targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" javaCompileOptions{ annotationProcessorOptions{ includeCompileClasspath = true } } multiDexEnabled true } buildTypes { release { minifyEnabled true 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 { compile fileTree(dir:'libs',include:'[*.jar]') androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',{ exclude group:'com.android.support',module:'support-annotations' }) compile 'io.paperdb:paperdb:2.5' compile 'com.android.support.constraint:constraint-layout:1.0.2' implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:27.1.1' 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' compile project(':mysql-connector-java-5.1.46-bin') }