0

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

Johnson
  • 297
  • 2
  • 5
  • 18

1 Answers1

0

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.

Abdul Wasae
  • 3,614
  • 4
  • 34
  • 56