audio-visualizer-android icon indicating copy to clipboard operation
audio-visualizer-android copied to clipboard

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

Open iskcjn opened this issue 3 years ago • 5 comments

屏幕截图 2022-07-17 002727

iskcjn avatar Jul 16 '22 16:07 iskcjn

i have same problem

amirbahojb76 avatar Aug 26 '22 14:08 amirbahojb76

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' }
    }
}

Benji377 avatar Nov 17 '22 18:11 Benji377

i have same problem, help me :<

shinkawar avatar Mar 20 '23 04:03 shinkawar

@shinkawar

i have same problem, help me :<

How does your build.gradle file look like?

Benji377 avatar Mar 20 '23 09:03 Benji377

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

successdrives avatar Feb 01 '24 23:02 successdrives