Failed To Resolve com.github.mancj:MaterialSearchBar:0.7.1
Did you possibly forget this step?
add this code to the project level build.gradle file
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
i'm also facing the same issue. please help.
I having the same issue. Is that the library currently down ?
im also facing this issue, any suggestion?
Try downgrade this library. I downgraded to 0.75
Get Outlook for Androidhttps://aka.ms/ghei36
From: Ali Shaker [email protected] Sent: Tuesday, April 9, 2019 7:39:18 PM To: mancj/MaterialSearchBar Cc: Syetchau; Comment Subject: Re: [mancj/MaterialSearchBar] Failed To Resolve com.github.mancj:MaterialSearchBar:0.7.1 (#51)
im also facing this issue, any suggestion?
— You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/mancj/MaterialSearchBar/issues/51#issuecomment-481215702, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AZNd4DN7gh37Yykmou9Lj_WgZ-Rk8H47ks5vfHvmgaJpZM4PP0L5.
add this code to the project level build.gradle file
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
google()
}
}
add this code to the settings.gradle file
dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS) // repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url "https://jitpack.io" } jcenter() // Warning: this repository is going to shut down soon } } rootProject.name = "RealtimeLocation" include ':app'
add this code to the settings.gradle file
dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS) // repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url "https://jitpack.io" } jcenter() // Warning: this repository is going to shut down soon } } rootProject.name = "RealtimeLocation" include ':app'
working