Can't find android.support.design.widget.Snackbar in support design library

前端 未结 11 939
南方客
南方客 2021-02-02 05:31

I develop own library module where I use Snackbar.

Here is my Gradle file:

apply plugin: \'com.android.library\'

android {
    compileSdkV         


        
11条回答
  •  离开以前
    2021-02-02 06:12

    Use implementation "com.android.support:design:23.0.0"

    or Change the Sdk to 28 and use implementation "com.android.support:design:28.0.0"

提交回复
热议问题