我正在尝试在我的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
有没有人知道我错过了什么?
答案 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"
}
}
}