audio-visualizer-android
audio-visualizer-android copied to clipboard
Failed to resolve: com.gauravk.audiovisualizer:audiovisualizer:0.9.2

i have same problem
You need to add jcenter() to your build.gradle file, like this:
allprojects {
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven { url 'https://jitpack.io' }
}
}
i have same problem, help me :<
@shinkawar
i have same problem, help me :<
How does your build.gradle file look like?
Just add the jcenter() to the dependencyResolutionManagement,in settings.gradle. It should look like: dependencyResolutionManagement { repositoriesMode.set(...) repositories { mavenCentral() jcenter() } }