The Android Developers Blog announced in May 2015:
The Design library is available now, so make sure to update the Android Support Repository in the SDK Manager.
I am using Eclipse (Version: Luna 4.4.2) with latest ADT-plugin and don't see anything "design" in the SDK manager:
When trying to use android.support.design.widget.FloatingActionButton or android.support.design.widget.NavigationView in my projects like this one -
I unfortunately get errors:
Caused by: java.lang.ClassNotFoundException: Didn't find class "android.support.design.widget.NavigationView" on path ...
If I would be using Android Studio, I probably needed the line
compile 'com.android.support:design:22.2.0'
but how to fix this in Eclipse? Can I download a JAR file for the design library?
I have searched \sdk\extras\android\support\
path, but haven't found any.