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

前端 未结 22 1574
不知归路
不知归路 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:07

    Personally, I add the following line to my app/build.gradle:

    implementation "com.android.support:design:${rootProject.ext.supportLibVersion}"
    

    With this syntax, version is dynamical.

提交回复
热议问题