如何解决与com.android.support依赖项的冲突?

时间:2018-09-28 04:20:14

标签: java android android-studio gradle compilation

如何重新处理Android gradle同步问题:

  

与依赖项'com.android.support:support-annotations'冲突。应用(24.2.1)和测试应用(23.1.1)的已解决版本不同。

当我使用pftpd-pojo-lib和slf4j-android-1.6.1-RC1将FTP功能添加到现有应用程序中时,就产生了错误。

我正在运行较旧的gradle(1.5.0),但不认为这是问题所在。

**

有人知道如何诊断此问题的根本原因吗?

**

以下是我在主应用中的相关部分:

//Added for FTP
configurations {
   implementation.exclude group: 'org.slf4j', module: 'slf4j-api'
}
//configurations.all {
//    resolutionStrategy.force 'com.android.support:support-annotations:23.1.0'
//}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:support-v4:21.0.0'
    compile 'com.android.support:cardview-v7:21.0.+'
   compile 'com.google.android.gms:play-services:6.1.71+'
   compile 'com.github.rey5137:material:1.2.1'

   compile 'com.michaelpardo:activeandroid:3.1.0-SNAPSHOT'
   compile project(':app:libs:feed-lib-Android')
   compile project(':app:libs:display-lib-Android')
   compile project(':app:libs:service-lib-Android')
   compile project(':app:libs:setup-lib-Android')
   compile 'commons-net:commons-net:3.5'
   compile 'com.amazonaws:aws-android-sdk-core:2.2.22'
   compile 'com.amazonaws:aws-android-sdk-s3:2.2.22'

   //    androidTestCompile 'com.google.dexmaker:dexmaker:1.+'
   //    androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.+'
   androidTestCompile 'org.hamcrest:hamcrest-core:1.1'
   androidTestCompile 'org.mockito:mockito-core:1.9.5'
   compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
       transitive = true;
   }
   androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
   compile 'com.android.support:design:23.1.1'//.2.1' //changes from 23.1.1 to 24.2.1
   androidTestCompile 'tools.fastlane:screengrab:0.5.5'

   //Added for FTP
   compile project(':app:libs:pftpd-pojo-lib')
   compile project(':app:libs:slf4j-android-1.6.1-RC1')
   compile 'org.apache.ftpserver:ftpserver-core:1.1.1'
   compile 'org.apache.sshd:sshd-core:0.14.0'
   compile 'org.greenrobot:eventbus:3.0.0'
   compile 'com.nononsenseapps:filepicker:4.2.1'
   compile 'eu.chainfire:libsuperuser:1.0.0.201704021214'
  //    compile 'com.android.support.constraint:constraint-layout:1.1.3'

}

我签出了Google网站:http://g.co/androidstudio/app-test-app-conflict,但可以找到任何有用的资源。

并尝试了this related stackoverflow question中的解决方案-无济于事。

0 个答案:

没有答案