"Cannot resolve symbol 'design' " error on Android Studio -


using these 3 lines:

import android.support.design.widget.floatingactionbutton; import android.support.design.widget.snackbar; import android.support.design.widget.toolbar; 

i following error:

cannot resolve symbol 'design'.

how solve problem? there files i'm missing?

you need include library in gradle app's file:

compile 'com.android.support:design:26.0.1' 

there link include librarys in project


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

Python Tornado package error when running server -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -