我遇到了依赖项问题,在某个地方我对okio.Buffer $ 2可能还有okio.AsyncTimeout有双重依赖关系(它在尝试解决问题时突然弹出,但我在隔离问题时遇到了麻烦)。这是我的依赖项。
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.android.gms:play-services-auth:16.0.1'
//implementation 'com.android.support:support-v4:28.0.0'
//implementation 'com.android.support:customtabs:28.0.0'
//implementation 'com.android.support:support-media-compat:28.0.0'
//implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:support-vector-drawable:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso core:3.0.2'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'de.hdodenhof:circleimageview:2.2.0'
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
implementation 'com.facebook.android:facebook-android-sdk:[4,5)'
implementation files('ksoap2-android-assembly-3.6.3-jar-with-dependencies.jar')
implementation files('build/libs/unirest-java-1.4.10-SNAPSHOT withDependency-ShadedForAndroid.jar')
implementation 'com.google.firebase:firebase-core:16.0.7'
implementation 'com.google.firebase:firebase-firestore:18.0.1'
在这方面,我已经用尽了许多形式和尝试以及数小时。如果有人有任何想法,请发表评论。该项目还实现了Facebook登录,Google登录和Firestore。我相信这3个问题之一正在解决这个问题。
最佳答案
可以从implementation
中排除它:
implementation ("com.google.firebase:firebase-firestore:18.2.0") {
exclude group: "com.squareup.okio"
}