Error while compiling release build in Android Studio 3.0 RC2

后端 未结 6 1661
耶瑟儿~
耶瑟儿~ 2020-12-10 03:58

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

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-10 04:50

    Add to build.gradle located in app module

    configurations {
        all {
            exclude module: 'httpclient'
            exclude module: 'commons-logging'
        }
    }
    

提交回复
热议问题