Gradle无法解析github项目(简单)

时间:2019-07-09 17:57:06

标签: android-studio github android-gradle

我想在我的项目中使用此库:https://github.com/haldertaer/android-maps-utils

在Gradle中使用implementation 'com.github.haldertaer:android-maps-utils:0.5'时,出现以下错误:ERROR: Failed to resolve: com.github.haldertaer:android-maps-utils:0.5

是的,我已经有了这个:

allprojects {
    repositories {
        google()
        jcenter()

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

如何解决此错误?我看不出有什么问题。

1 个答案:

答案 0 :(得分:0)

根据project documentation,定义官方库依赖项的正确方法是

implementation 'com.google.maps.android:android-maps-utils:0.5'

更新

根据您的评论,您希望使用JitPack解决派生版本,而不是正式版本。使用JitPack时,version必须是“发布标签,提交哈希或-SNAPSHOT”(Building with JitPack)之一。您可以尝试

com.github.haldertaer:android-maps-utils:master-SNAPSHOT

com.github.haldertaer:android-maps-utils:72b39c8