Unable to import android.support.design.widget.NavigationView

Dushyant Suthar picture Dushyant Suthar · Sep 11, 2015 · Viewed 22.7k times · Source

I want to have navigation drawer in my application so I am following a tutorial here, in which he has imported the NavigationView library within his project. When I import that library, an error pops up: 'can not resolve'. So again when I hover over the import statement and select 'find jar on web', a message shows saying 'no such library found'.

Answer

Mrdrew picture Mrdrew · Oct 8, 2015

I am also facing the same problem and i found a solution by adding the following code to build.gradle

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

I also adjusted my targetSdk in the build.gradle file to 22 and i was able to succesfully import the NavigationView without any problem.