No resource identifier found for attribute 'layout_behavior' in package

后端 未结 11 1003
不知归路
不知归路 2020-11-30 05:43

My application worked fine until I tried to add a library to it. After I added the library, Android Studio gives me the following error:

Error:(26) No

11条回答
  •  一个人的身影
    2020-11-30 05:50

    for those using androidX

    com.android.support:design is now moved to com.google.android.material
    

    you will need to include this

    implementation 'com.google.android.material:material:1.1.0-alpha02' 
    

提交回复
热议问题