2017-04-18 4 views
0

빈 Android 프로젝트가 있는데 PubSub Java 클라이언트에 대해 this guide을 팔로우하고 있습니다. 그래서 기본적으로 난 단지 추가 오전 :Android 클라우드 PubSub을 가져올 때 종속성 찾기 버그가 발생했습니다. gradle

compile group: 'com.google.cloud', name: 'google-cloud-pubsub', version: '0.11.0-alpha'

내 Gradle을에 (전체 파일이 here입니다)

내가 오류는 다음과 같습니다

Error:Conflict with dependency 'com.google.code.findbugs:jsr305' in project ':app'. Resolved versions for app (3.0.0) and test app (2.0.1) differ. See http://g.co/androidstudio/app-test-app-conflict for details.

2 경고도 있습니다 :

Warning:WARNING: Dependency org.json:json:20151123 is ignored for release as it may be conflicting with the internal version provided by Android.

Warning:WARNING: Dependency org.apache.httpcomponents:httpclient:4.0.1 is ignored for release as it may be conflicting with the internal version provided by Android.

# 1319와 관련이 있다고 생각하지만 제안 된 솔루션이 제대로 작동하지 않습니다.

제안 사항?

답변

1

그 복제 종속성을 제외하는 문제를 해결할 수 있음을 보인다

을 이렇게 대신

compile group: 'com.google.cloud', name: 'google-cloud-pubsub', version: '0.11.0-alpha' 

의이 오류도 경고를 발생하지 않을 것이다 :

compile ('com.google.cloud:google-cloud-pubsub:0.11.0-alpha') { 
    exclude group: 'com.google.code.findbugs' 
    exclude group: 'org.apache.httpcomponents' 
    exclude group: 'org.json' 
}