"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 -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -