Add Material Design Library In Android Studio

2.2k Views Asked by At

I'm very very new to Android Studio, and I can't understand how to use the Android Design Library, can someone help me guiding me in each passage? Please

1

There are 1 best solutions below

6
On BEST ANSWER

in you build.gradle, add the dependency like:

dependencies {
...
compile 'com.android.support:design:25.1.0'
... 
}

sync your project and start using it.

See here.