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

前端 未结 8 1881
别跟我提以往
别跟我提以往 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:24

    Add to build.gradle located in app module

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

提交回复
热议问题