1

I have tried with, 2.3.0, 2.3.1, 2.3 Bt nothing works.

dependencies {
Classpath 'com.android.tools.build.gradle:1.3.0'
  }
KiranB
  • 13
  • 6

1 Answers1

0

Don't know why my previous answer was deleted.

Add the below line to your build.gradle file

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

If already added then let know, will think of another solution.

Syn3sthete
  • 4,151
  • 3
  • 23
  • 41
  • Yes i have added it..but getting the same problem – KiranB Sep 14 '16 at 08:24
  • @KiranB Try cleaning the project and re-building it once. Also confirm if the above line is added to your app's build.gradle file not the project's build.gradle file. There are 2 files in the project. – Syn3sthete Sep 14 '16 at 08:27
  • Yes..I have added it apps build.gradle file. After cleaning and rebuilding, it's showing errors given below. Could not resolve all dependencies for configuration ':app:_debugCompile'. – KiranB Sep 14 '16 at 08:33
  • @KiranB Check if you have downloaded/updated 'Android Support Repository' from SDK manager? – Syn3sthete Sep 14 '16 at 09:41