audio-visualizer-android
audio-visualizer-android copied to clipboard
Failed to resolve: com.gauravk.audiovisualizer:audiovisualizer:0.9.2
Please help me: Failed to resolve: com.gauravk.audiovisualizer:audiovisualizer:0.9.2
I use this:
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
gradlePluginPortal()
jcenter() // Warning: this repository is going to shut down soon
maven { url = uri("https://jitpack.io") }
maven{
name="Maven SciJava"
url "https://maven.scijava.org/content/groups/public"
}
maven {
url 'https://dl.bintray.com/novoda-oss/snapshots/'
}
maven {
url 'https://artifact.bytedance.com/repository/pangle'
}
}
}
And this way:
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url = uri("https://jitpack.io") }
maven{
name="Maven SciJava"
url "https://maven.scijava.org/content/groups/public"
}
maven {
url 'https://dl.bintray.com/novoda-oss/snapshots/'
}
maven {
url 'https://artifact.bytedance.com/repository/pangle'
}
}
}
I removed or added jcenter() in setting.gradle but it's not woking. I think i have to clone jar this library and add to my project.