我正在使用这个库中的 photoview com.github.chrisbanes:PhotoView:1.3.1
。但是我的 Gradle 没有同步。
我已经在这个网址上添加了来自 Gradle Dependancy 的 Maven 代码:https ://github.com/chrisbanes/PhotoView
我正在使用这个库中的 photoview com.github.chrisbanes:PhotoView:1.3.1
。但是我的 Gradle 没有同步。
我已经在这个网址上添加了来自 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
}
我不知道为什么我需要这样做,因为我的一个朋友刚刚在 allprojects 块中添加了存储库,它对他有用。
这个库的最新版本是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
粘贴这个:
maven { url "https://www.jitpack.io" }
在settings.gradle 中,并粘贴此依赖项:
implementation'com.github.chrisbanes:PhotoView:latest.release.here'
在build.gradle中。
添加你的 gradle.settings:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven { url "https://jitpack.io" }
}
}
在 photoview ex 之后添加“库”:实现“com.github.chrisbanes.photoview:library:1.2.4”
https://bintray.com/bintray/jcenter/com.github.chrisbanes.photoview:library#statistics
这是我的答案,经过一些尝试后解决了!
在您的 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'
这应该工作希望它会有所帮助。