-3

I am seeing these messages

Rendering problems The following classes could not be found android.support.design.widget.appbarlayout(Fix build path, Create class) android.support.design.widget.CoordinatorLayout(Fix build path,Create class)

OneCricketeer
  • 151,199
  • 17
  • 111
  • 216
KiranB
  • 13
  • 5

2 Answers2

0

Have you added this line to you build.gradle file?

dependencies {
   compile 'com.android.support:design:23.4.0'
}
Syn3sthete
  • 4,101
  • 3
  • 21
  • 39
0

change in build.gradle

from :

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

to :

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

or what ever is the number just put 0.0 at the end

  • no but it's solution for his problem he can do 23+' –  Sep 14 '16 at 08:13
  • yup but sometimes fix render problems ;) –  Sep 14 '16 at 08:15
  • The error sounds like the classes aren't on the class path. The fact that changing a version number of a library may help is because those classes actually exist in that version – OneCricketeer Sep 14 '16 at 08:17