Gradle Build Failed - Apache Httpentity
I get this error when I try to run my application: Information:Gradle tasks [:app:assembleDebug] Warning:Dependency org.apache.httpcomponents:httpclient:4.3.5 is ignored for debug
Solution 1:
Update: I got the answer from this post
Android Gradle plugin 0.7.0: "duplicate files during packaging of APK"
android {
packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/LICENSE'
exclude 'META-INF/license.txt'
exclude 'META-INF/LGPL2.1'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/notice.txt'
}
}
Solution 2:
Thats not problem in Android Studio only your system require internet connection
- Just extends class MultipartEntity
- Than press Alt+Enter
- Than click find jar on web
- Select httpmime-4.0-alpha4.jar
- Than right click on project structure
- Click open module setting
- In dependencies tab click on + icon on right side
- Than click on file dependency select http:mime file added
- Finally build project
Post a Comment for "Gradle Build Failed - Apache Httpentity"