gauravk95 / audio-visualizer-android

🎵 [Android Library] A light-weight and easy-to-use Audio Visualizer for Android.
Apache License 2.0
844 stars 127 forks source link

Failed to resolve: com.gauravk.audiovisualizer:audiovisualizer:0.9.2 #32

Open iskcjn opened 2 years ago

iskcjn commented 2 years ago

屏幕截图 2022-07-17 002727

amirbahojb76 commented 2 years ago

i have same problem

Benji377 commented 1 year ago

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' }
    }
}
shinkawar commented 1 year ago

i have same problem, help me :<

Benji377 commented 1 year ago

@shinkawar

i have same problem, help me :<

How does your build.gradle file look like?

successdrives commented 7 months ago

Just add the jcenter() to the dependencyResolutionManagement,in settings.gradle. It should look like: dependencyResolutionManagement { repositoriesMode.set(...) repositories { mavenCentral() jcenter() } }