7

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

错误

分级文件

我已经在这个网址上添加了来自 Gradle Dependancy 的 Maven 代码:https ://github.com/chrisbanes/PhotoView

4

6 回答 6

13

我遇到了这个问题,并通过在 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
}

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

于 2017-02-03T07:39:53.603 回答
2

这个库的最新版本是2.0.0[as of 18 Mar 2017](不是1.3.1)请参阅版本

在您的模块级别使用它build.gradle

implementation 'com.github.chrisbanes:PhotoView:2.0.0'

测试正常(在这里gradle/jitpack找到它):

Download https://jitpack.io/com/github/chrisbanes/PhotoView/2.0.0/PhotoView-2.0.0.pom
Download https://jitpack.io/com/github/chrisbanes/PhotoView/2.0.0/PhotoView-2.0.0.aar
于 2018-05-27T08:49:33.107 回答
1

粘贴这个:

maven { url "https://www.jitpack.io" }

settings.gradle 中,并粘贴此依赖项:

implementation'com.github.chrisbanes:PhotoView:latest.release.here'

build.gradle中。

设置.gradle

于 2021-12-12T07:10:32.137 回答
1

添加你的 gradle.settings:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        maven { url "https://jitpack.io" }
    }
}
于 2021-10-26T07:49:57.670 回答
0

在 photoview ex 之后添加“库”:实现“com.github.chrisbanes.photoview:library:1.2.4”

https://bintray.com/bintray/jcenter/com.github.chrisbanes.photoview:library#statistics

于 2018-03-16T15:54:09.257 回答
0

这是我的答案,经过一些尝试后解决了!

在您的 build.gradle 文件中,您应该有最后两行。

allprojects {
    repositories {
        google()
        jcenter()

        // for photo view
        maven { url "https://jitpack.io" }
        maven { url "https://maven.google.com" }
    }
}

然后添加最新版本。

// photo view
implementation 'com.github.chrisbanes:PhotoView:2.3.0'

这应该工作希望它会有所帮助。

于 2019-12-14T07:10:44.713 回答