我已经在以前的Android Studio版本中包含了一些库,并且编译了' ...'。 现在我想包括以下内容:
<{> https://github.com/diogobernardino/WilliamChartcompile 'com.db.williamchart:williamchart:1.0.0'
如果我这样做,Android Studio会告诉我:
Error:Failed to find: com.db.williamchart:williamchart:1.0.0
Open File - Open in Project Structure dialog
我已经在我的Project build.gradle中添加了 mavenCentral()。该文件看起来像:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
}
}
我现在读到你可以在这里搜索你的maven http://search.maven.org/而且我找不到我想要的那个库,但似乎没有其他人像我这样有同样的问题。
我总是遇到麻烦,所以如果我不喜欢我就不会感到惊讶。