1

我正在尝试在我的 Android 项目中添加 Giphy Android SDK。在Giphy SDK 的文档中,提到在您的项目 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

有谁知道我错过了什么?

4

1 回答 1

1

确保添加以下行

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

像这样在下面allprojects而不是在下面buildscript

allprojects {
    repositories {
        google()
        jcenter()
        maven {
            url "https://giphy.bintray.com/giphy-sdk"
        }
    }
}
于 2018-03-06T10:26:39.837 回答