Wang Ming
Wang Ming

Reputation: 63

Could not resolve com.quickblox:quickblox-android-sdk-messages:3.9.1

I am developing react native video Chang app using quickblox. But I install quickblox module and run the project, the error occurs like the following. How can I fix this error?

enter image description here

Upvotes: 1

Views: 366

Answers (1)

IntelliJ Amiya
IntelliJ Amiya

Reputation: 75788

Add below code to your project's build.gradle file:

allprojects {
    repositories {
        maven {
            url "https://github.com/QuickBlox/quickblox-android-sdk-releases/raw/master/"

        }
    }
}

Upvotes: 2

Related Questions