Reputation: 5637
I added 'android.support.design' library as a dependency in my project
but the following error was found.
No resource identifier found for attribute 'layoutManager' in package 'android.support.design'
What I have done so far..
Please help.
Upvotes: 8
Views: 8939
Reputation: 627
The design library depends on appcompat-v7 library as pointed out in xcesco`s answer. But (at least in rev. 23.1) it depends on v7-recyclerview library as well.
So basically you have two options:
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
in the
..design\res\layout\design_navigation_menu.xml
file. (If you are not using NavigationMenu from the design library, or hoping to fix this issue later)Thanks for making this clear in the docs Google!
Upvotes: 24
Reputation: 984
To use android.support.design add this as gradle dependency:
compile 'com.android.support:design:22.2.1'
And you are good to go....
Upvotes: 3