qiscus / qiscus-sdk-android

Qiscus provide everything you need to power up your app with chats. And it's now made simple.
https://www.qiscus.com
Apache License 2.0
201 stars 84 forks source link

Could not find com.schinizer:rxunfurl:0.2.0 #100

Closed iffanmajid closed 2 years ago

iffanmajid commented 2 years ago

Hello everyone,

When I remove jCenter from my project, the dependencies could not found for following library:

> Could not find com.schinizer:rxunfurl:0.2.0.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/com/schinizer/rxunfurl/0.2.0/rxunfurl-0.2.0.pom
       - https://repo.maven.apache.org/maven2/com/schinizer/rxunfurl/0.2.0/rxunfurl-0.2.0.pom
       - https://jitpack.io/com/schinizer/rxunfurl/0.2.0/rxunfurl-0.2.0.pom
       - https://artifactory.qiscus.com/artifactory/qiscus-library-open-source/com/schinizer/rxunfurl/0.2.0/rxunfurl-0.2.0.pom
       - https://cardinalcommerceprod.jfrog.io/artifactory/android/com/schinizer/rxunfurl/0.2.0/rxunfurl-0.2.0.pom
     Required by:
         project :app > com.qiscus.sdk:chat-core:1.6.0
ariefnurputranto commented 2 years ago

Thanks for your report sir @iffanmajid

you can add this code to fix this.

repositories {
        google()
        mavenCentral()
        maven {
            url "https://plugins.gradle.org/m2/"
        }
    }

allprojects {
    repositories {
        google()
        maven { url "https://artifactory.qiscus.com/artifactory/qiscus-library-open-source" }
        maven { url 'https://jitpack.io' }
        maven {
            url "https://plugins.gradle.org/m2/"
        }
    }
}

Regards

iffanmajid commented 2 years ago

thanks for the response. I think it works now.