无法解析Android Giphy SDK依赖项

金鞍玉勒寻芳客,未信我庐别有春。这篇文章主要讲述无法解析Android Giphy SDK依赖项相关的知识,希望能为你提供帮助。
【无法解析Android Giphy SDK依赖项】我想在我的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

有谁知道我错过了什么?
答案确保添加以下行
repositories { maven { url"https://giphy.bintray.com/giphy-sdk" } }

allprojects下,而不是像buildscript那样
allprojects { repositories { google() jcenter() maven { url "https://giphy.bintray.com/giphy-sdk" } } }


    推荐阅读