Quantcast
Channel: Androidメモ
Viewing all articles
Browse latest Browse all 29

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

$
0
0
Androidアプリの開発をしていて外部ライブラリを利用していると発生するワーニングの対処法

Warning:WARNING: Dependency org.apache.httpcomponents:httpclient:4.0.1 is ignored for debug as it may be conflicting with the internal version provided by Android.
app/build.gradleに以下を追加
compile ('******:******:1.0.0+'){
exclude(group: 'org.apache.httpcomponents', module: 'httpclient')
}

Viewing all articles
Browse latest Browse all 29

Trending Articles