无法解析Android Giphy SDK依赖项

时间:2018-01-26 05:06:45

标签: android dependencies giphy giphy-api

我正在尝试在我的Android项目中添加Giphy Android SDK。在Giphy SDK's documentation上,提到您在Project gradle.build文件中添加:

repositories {
    maven {
        url  "https://giphy.bintray.com/giphy-sdk"
    }
}

并在您的模块的gradle.build文件中添加:

compile('com.giphy.sdk:core:1.0.0@aar') {
    transitive=true
}

但是当我正在同步它时,Android Studio会给我一个错误说:

Failed to resolve: com.giphy.sdk:core:1.0.0

有没有人知道我错过了什么?

1 个答案:

答案 0 :(得分:0)

确保添加以下行

repositories {
    maven {
        url  "https://giphy.bintray.com/giphy-sdk"
    }
}

allprojects下,而不在buildscript下,如此

allprojects {
    repositories {
        google()
        jcenter()
        maven {
            url "https://giphy.bintray.com/giphy-sdk"
        }
    }
}