我正在使用这个库中的 photoview com.github.chrisbanes:PhotoView:1.3.1 。但是我的 Gradle 没有同步。

android - 无法解析 com.github.chrisbanes :PhotoView:1. 3.1-LMLPHP

android - 无法解析 com.github.chrisbanes :PhotoView:1. 3.1-LMLPHP

我已经在此URL上从Gradle Dependancy添加了Maven代码:https://github.com/chrisbanes/PhotoView

最佳答案

我遇到了这个问题,并通过在 buildscript 中添加存储库解决了这个问题。在这里你可以看到我的 build.gradle(不是模块,而是项目一):

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        maven { url "https://jitpack.io" }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

我不知道为什么我需要这样做,因为我的一位 friend 刚刚在 allprojects 块中添加了存储库,并且对他有用。

关于android - 无法解析 com.github.chrisbanes :PhotoView:1. 3.1,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41258938/

10-12 02:37