Skip to content Skip to sidebar Skip to footer

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

  1. Just extends class MultipartEntity
  2. Than press Alt+Enter
  3. Than click find jar on web
  4. Select httpmime-4.0-alpha4.jar
  5. Than right click on project structure
  6. Click open module setting
  7. In dependencies tab click on + icon on right side
  8. Than click on file dependency select http:mime file added
  9. Finally build project

Post a Comment for "Gradle Build Failed - Apache Httpentity"