Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Could not find com.chibde:audiovisualizer:2.2.0. #42

Open
Satellite-system opened this issue Dec 23, 2021 · 8 comments
Open

Could not find com.chibde:audiovisualizer:2.2.0. #42

Satellite-system opened this issue Dec 23, 2021 · 8 comments

Comments

@Satellite-system
Copy link

i have used this in my build.gradle(:app) , but getting above error,pls help where i am wrong below is my build.gradle(:app) file

plugins {
id 'com.android.application'
}

android {
compileSdk 31

defaultConfig {
    applicationId "com.assistant.android.apex"
    minSdk 21
    targetSdk 31
    versionCode 1
    versionName "1.0"

    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
    }
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures {
    viewBinding true
}

}

dependencies {

//TODO 1 : Add Music/Audio Visualizer
implementation 'com.chibde:audiovisualizer:2.2.0'

//TODO 2a : Second library added
debugImplementation 'com.ms-square:debugoverlay:1.1.3'
releaseImplementation 'com.ms-square:debugoverlay-no-op:1.1.3'
testImplementation 'com.ms-square:debugoverlay-no-op:1.1.3'

implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

}

@JamesLee11
Copy link

I have the same problem. Can you please let us know how to solve this problem?

@biniya1mmerkin2
Copy link

com.chibde.visualizer.BarVisualizer
i have also the same problem and now i fixed by removing audiovisualizer like above

@ridayislam402
Copy link

I have also the same problem and now I fixed it. Just add this dependency.

implementation 'io.github.gautamchibde:audiovisualizer:2.2.5'

@A6uh
Copy link

A6uh commented Mar 29, 2023

com.chibde.visualizer.BarVisualizer i have also the same problem and now i fixed by removing audiovisualizer like above

Yeah it seems like the wiki hasn't been updated for all of the classes besides the SquareBar Visualizer. This solved the issue for me.

@ESO-141
Copy link

ESO-141 commented Jun 6, 2023

I have also the same problem and now I fixed it. Just add this dependency.

implementation 'io.github.gautamchibde:audiovisualizer:2.2.5'

I added it and it didn't work for me

when I run or build the app it says : "

  • What went wrong:
    Execution failed for task ':app:mergeDebugNativeLibs'.

Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
Could not find com.chibde:audiovisualizer:2.2.0.

"

how can I solve it please!.

@A6uh
Copy link

A6uh commented Jun 6, 2023

I have also the same problem and now I fixed it. Just add this dependency.
implementation 'io.github.gautamchibde:audiovisualizer:2.2.5'

I added it and it didn't work for me

when I run or build the app it says : "

  • What went wrong:
    Execution failed for task ':app:mergeDebugNativeLibs'.

Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
Could not find com.chibde:audiovisualizer:2.2.0.

"

how can I solve it please!.

If you already added
io.github.gautamchibde:audiovisualizer:2.2.5

Then you'll want to remove
com.chibde:audiovisualizer:2.2.0

Keep in mind, a lot of the usage cases in the wiki are also outdated. I opened an issue to correct it here in issue 52. You'll probably run into that once you get the dependencies working.

@ESO-141
Copy link

ESO-141 commented Jun 6, 2023

I have also the same problem and now I fixed it. Just add this dependency.
implementation 'io.github.gautamchibde:audiovisualizer:2.2.5'

I added it and it didn't work for me
when I run or build the app it says : "

  • What went wrong:
    Execution failed for task ':app:mergeDebugNativeLibs'.

Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
Could not find com.chibde:audiovisualizer:2.2.0.

"
how can I solve it please!.

If you already added io.github.gautamchibde:audiovisualizer:2.2.5

Then you'll want to remove com.chibde:audiovisualizer:2.2.0

Keep in mind, a lot of the usage cases in the wiki are also outdated. I opened an issue to correct it here in issue 52. You'll probably run into that once you get the dependencies working.

I have also the same problem and now I fixed it. Just add this dependency.
implementation 'io.github.gautamchibde:audiovisualizer:2.2.5'

I added it and it didn't work for me
when I run or build the app it says : "

  • What went wrong:
    Execution failed for task ':app:mergeDebugNativeLibs'.

Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
Could not find com.chibde:audiovisualizer:2.2.0.

"
how can I solve it please!.

If you already added io.github.gautamchibde:audiovisualizer:2.2.5

Then you'll want to remove com.chibde:audiovisualizer:2.2.0

Keep in mind, a lot of the usage cases in the wiki are also outdated. I opened an issue to correct it here in issue 52. You'll probably run into that once you get the dependencies working.

okay, thanks it worked but and it's fine but when I write it's XML code the XML layout disappears

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants
@A6uh @JamesLee11 @Satellite-system @ridayislam402 @biniya1mmerkin2 @ESO-141 and others