commons-logging defines classes that conflict with classes now provided by Android after Android Studio Update

Add to build.gradle located in app module

configurations {
    all {
        exclude module: 'httpclient'
    }
}

Leave a Comment