无法在 gradle 中解析 com.melnykov:floatingactionbutton:1.3.0

Failed to resolve com.melnykov:floatingactionbutton:1.3.0 in gradle

如果我遗漏了一些明显的东西,我深表歉意,但我最近将我的项目从 Eclipse 转换为 Android Studio(和 Gradle),并尝试使用 [= 添加对浮动操作按钮的支持17=],但 Gradle 无法解析它。我认为将 compile 'com.melnykov:floatingactionbutton:1.3.0' 添加到我的应用程序的 build.gradle 文件是一件简单的事情。我是不是遗漏了什么,或者源代码无法下载还是什么?提前致谢。

我的应用程序的 build.gradle 文件:

apply plugin: 'android'

dependencies {
    compile 'com.android.support:support-v4:22.1.0'
    compile files('libs/opencsv-3.1.jar')
    compile 'com.android.support:appcompat-v7:22.1.0'
    compile 'com.melnykov:floatingactionbutton:1.3.0'
}

android {
    compileSdkVersion 22
    buildToolsVersion "22"

    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            resources.srcDirs = ['src']
            aidl.srcDirs = ['src']
            renderscript.srcDirs = ['src']
            res.srcDirs = ['res']
            assets.srcDirs = ['assets']
        }

        // Move the tests to tests/java, tests/res, etc...
        instrumentTest.setRoot('tests')

        // Move the build types to build-types/<type>
        // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
        // This moves them out of them default location under src/<type>/... which would
        // conflict with src/ being used by the main source set.
        // Adding new build types or product flavors should be accompanied
        // by a similar customization.
        debug.setRoot('build-types/debug')
        release.setRoot('build-types/release')
    }
}

我得到的错误是

Error:(6, 13) Failed to resolve: com.makovkastar:floatingactionbutton:1.3.0

像这样添加jcenter仓库后,错误似乎已经解决了。我不完全理解它,但现在一切都可以编译了。

...
dependencies {
    compile 'com.android.support:support-v4:22.1.0'
    compile files('libs/opencsv-3.1.jar')
    compile 'com.android.support:appcompat-v7:22.1.0'
    compile 'com.melnykov:floatingactionbutton:1.3.0'
}

repositories {
    jcenter()
}
...

您必须添加 存储库 gradle 应该从中下载 aar。

repositories {
    jcenter()
}

没有这部分,gradle不知道去哪里找依赖。

其他库不需要 repo,因为它们是本地 jar(它们可以在 lib 文件夹中找到):

compile files('libs/opencsv-3.1.jar')

或本地 maven(由 sdk 管理器提供)

  compile 'com.android.support:support-v4:22.1.0'
  compile 'com.android.support:appcompat-v7:22.1.0'