Reputation: 63
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?
Upvotes: 1
Views: 366
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