は、私は次の依存関係スクリプトを持っている:ユーチューブライブラリとgrpcライブラリの両方がGoogleグアバライブラリに依存しているGradleの依存関係のバージョンの競合
apply plugin: 'com.android.application'
apply plugin: 'com.google.protobuf'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.asdf.asdf"
minSdkVersion 10
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildTypes.each {
it.buildConfigField 'String', 'YOUTUBE_API_KEY', YoutubeApiKey
}
}
protobuf {
protoc {
artifact = 'com.google.protobuf:protoc:3.0.0-beta-2'
}
plugins {
grpc {
artifact = 'io.grpc:protoc-gen-grpc-java:0.13.2'
}
}
generateProtoTasks {
all().each { task ->
task.builtins {
javanano {
option 'ignore_services=true'
}
}
task.plugins {
grpc {
option 'nano=true'
}
}
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.mcxiaoke.volley:library:1.0.19'
compile 'com.android.support:design:23.2.1'
compile 'com.android.support:support-v4:23.2.1'
compile 'com.android.support:cardview-v7:23.2.1'
compile 'com.android.support:support-annotations:23.2.1'
compile 'com.android.support:customtabs:23.2.1'
compile 'com.google.apis:google-api-services-youtube:v3-rev164-1.21.0'
compile 'javax.annotation:javax.annotation-api:1.2'
compile 'io.grpc:grpc-protobuf-nano:0.13.2'
compile 'io.grpc:grpc-okhttp:0.13.2'
compile 'io.grpc:grpc-stub:0.13.2'
compile 'com.google.guava:guava:18.0'
}
けれども、彼らは紛争の原因となるさまざまなバージョンに依存しています。 Youtubeはcom.google.guava:guava-jdk5:17.0
に依存しており、grpcはcom.google.guava:guava:18.0
です(アーティファクトの違いがある可能性があることに注意してください)。grpcは、youtubeのバージョンのguavaで定義されているメソッドの検索を終了します。依存。これをどうやって解決するのですか?
エラーメッセージ
FATAL EXCEPTION: SyncAdapterThread-1
Process: com.asdf.asdf, PID: 4025
java.lang.NoSuchMethodError: No static method directExecutor()Ljava/util/concurrent/Executor; in class Lcom/google/common/util/concurrent/MoreExecutors; or its super classes (declaration of 'com.google.common.util.concurrent.MoreExecutors' appears in /data/data/com.fentale.dalol/files/instant-run/dex/slice-guava-jdk5-17.0_a8ada10dcaf113cb6e3b4d3e5b46975833f8ae8f-classes.dex)
at io.grpc.internal.ClientCallImpl.<init>(ClientCallImpl.java:100)
at io.grpc.internal.ManagedChannelImpl$RealChannel.newCall(ManagedChannelImpl.java:320)
at io.grpc.internal.ManagedChannelImpl.newCall(ManagedChannelImpl.java:299)
at io.grpc.stub.ClientCalls.blockingUnaryCall(ClientCalls.java:130)
at com.fentale.dalol.nano.DalolGrpc$DalolBlockingStub.topPosts(DalolGrpc.java:365)
方法 "directExecutor" はグアバ-V18に定義され、しかしgrpcはguava-jdk5
からアクセスしようとしています。
を追加し、より詳細 は、添付のスクリーンショットを確認してください。 – barq
あなたのグラデルの最後の行を削除してください – barq
@barqあなたの指示に従って最後の行(グアバの依存関係)を追加しました。動作しません。また、プロジェクトビルドでも同じ結果を得ようとしました。 –