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

前端 未结 8 1863
别跟我提以往
别跟我提以往 2020-12-01 13:34

I have updated Android Studio to version 3 and now seems unable to compile my project previously compiled without errors.

The error message is the follow

8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-01 14:03

    If you want to continue with async-http then add below following code only in app/build.gradle

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

提交回复
热议问题