Error : Program type already present: android.support.design.widget.CoordinatorLayout$Behavior

前端 未结 22 1635
不知归路
不知归路 2020-11-27 14:04

I am getting the following error while building the project. haven\'t used CoordinatorLayout in this project. just added as a dependency in build.gradle :

I am usin

22条回答
  •  囚心锁ツ
    2020-11-27 14:10

    Make sure these two are the same version in your app level build.gradle file

        implementation 'com.android.support:appcompat-v7:27.1.1'
        implementation 'com.android.support:design:27.1.1'
    

    I think that should solve the problem

提交回复
热议问题