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

前端 未结 11 1058
南方客
南方客 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:18

    If you are migrating to androidx then use

    com.google.android.material.R.id.snackbar_text

    instead of

    android.support.design.R.id.snackbar_text

    Don't miss to import import com.google.android.material.snackbar.Snackbar;

    Also implement implementation "com.google.android.material:material:1.2.0-alpha02"

提交回复
热议问题