PdfRendererView icon indicating copy to clipboard operation
PdfRendererView copied to clipboard

Photoview error

Open asifshiraz opened this issue 4 years ago • 1 comments

I get following error:

Could not find com.github.chrisbanes:PhotoView:2.1.3. Searched in the following locations:

  • https://dl.google.com/dl/android/maven2/com/github/chrisbanes/PhotoView/2.1.3/PhotoView-2.1.3.pom
  • https://jcenter.bintray.com/com/github/chrisbanes/PhotoView/2.1.3/PhotoView-2.1.3.pom

asifshiraz avatar Jul 30 '20 21:07 asifshiraz

Add in file settings.gradle this code

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        jcenter() // Warning: this repository is going to shut down soon
        maven { url 'https://jitpack.io' }
    }
}

It works for me. You can try to add only library com.github.chrisbanes:PhotoView:XXX to check error. A had same errors with it

luck-alex13 avatar Jan 20 '23 12:01 luck-alex13