我正在使用Android studio,我需要使用以下依赖项:
compile 'org.jboss.resteasy.mobile:resteasy-mobile:1.0.0'
此依赖项包含org.apache.httpcomponents:httpclient:4.0.3
Android Studio收到以下错误:
Warning:WARNING: Dependency org.apache.httpcomponents:httpclient:4.0.3 is ignored for release as it may be conflicting with the internal version provided by Android.
如何强制使用我的依赖关系而不是Android提供的依赖关系?我可以以某种方式从Android中排除httpclient吗?
THX。
答案 0 :(得分:0)
您可以使用
android {
useLibrary 'org.apache.http.legacy'
}
告诉android studio您正在使用旧版库。