How can I fix this issues while compiling release build in Android Studio 3.0 RC2
Error:Error: commons-logging defines classes that conflict with cl
The same error i fixed by this piece of code...
android { ... configurations { all { exclude module: 'httpclient' exclude module: 'json' exclude group: 'org.apache.httpcomponents' } } ... }