Reputation: 671
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'.
Upvotes: 12
Views: 24838
Reputation: 9521
If in your app build.gradle
file compileSdkVersion
reads as say 28
,
then add the following line under dependencies:
dependencies {
--other dependencies
implementation 'com.android.support:design:28.0.0'
}
Change the version number according to your compiledSdkVersion
Then re-build your project. This brings in the required dependency.
Upvotes: 0
Reputation: 309
If you have this error with compile design:22 or higher just restart your Android Studio.
Upvotes: 2
Reputation: 191
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.
Upvotes: 16
Reputation: 1597
before importing support library, Make sure you have downloaded Android Support Repository using SDK Manager.
Upvotes: 4