简体   繁体   English

将 GitHub 库作为依赖项添加到 Android Studio 项目

[英]Add GitHub library as dependency to Android Studio project

I am trying to implement ActionBar-PullToRefresh from https://github.com/chrisbanes/ActionBar-PullToRefresh/wiki/QuickStart-ABC .我正在尝试从https://github.com/chrisbanes/ActionBar-PullToRefresh/wiki/QuickStart-ABC实现 ActionBar-PullToRefresh。 I just made the switch from Eclipse to Android Studio so I am totally new to AS and Gradle.我刚刚从 Eclipse 切换到 Android Studio,所以我对 AS 和 Gradle 完全陌生。

chrisbanes writes on the site:克里斯班斯在网站上写道:

The easiest way to add ActionBar-PullToRefresh to your project is via Gradle, you just need to add the following dependency to your build.gradle:将 ActionBar-PullToRefresh 添加到项目中的最简单方法是通过 Gradle,您只需将以下依赖项添加到 build.gradle:

dependencies {  
    mavenCentral()
    compile 'com.github.chrisbanes.actionbarpulltorefresh:extra-abc:+'
}

Does this mean that I don't have to download the library and Gradle takes care of it so that I always have the latest version?这是否意味着我不必下载库并由 Gradle 处理它,以便我始终拥有最新版本? I just don't know where to put the above line.我只是不知道把上面的行放在哪里。 I have two gradle.build files one in my root that looks like:我的根目录中有两个 gradle.build 文件,其中一个看起来像:

// 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:0.8.+'
    }
}

and the one in my project which looks like:我的项目中的那个看起来像:

apply plugin: 'android'

dependencies {
    compile fileTree(dir: 'libs', include: '*.jar')
    compile 'com.android.support:support-v4:18.0.+'
    compile 'com.android.support:appcompat-v7:18.0.+'
}

android {
    compileSdkVersion 19
    buildToolsVersion "19.0.1"

    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')
    }
}

Do I have to add a repository somewhere?我必须在某处添加存储库吗?

It will work when you put this line in your project build.gradle , in the dependencies section:当您将此行放入项目build.gradledependencies项部分时,它将起作用:

compile 'com.github.chrisbanes.actionbarpulltorefresh:extra-abc:+'

Also, add:另外,添加:

repositories {
    mavenCentral()
}

So:所以:

repositories {
    mavenCentral()
}

dependencies {
    compile fileTree(dir: 'libs', include: '*.jar')
    compile 'com.android.support:support-v4:18.0.+'
    compile 'com.android.support:appcompat-v7:18.0.+'
    compile 'com.github.chrisbanes.actionbarpulltorefresh:extra-abc:+'
}

Gradle will download the needed resources automatically for you. Gradle 会自动为您下载所需的资源。

Use https://jitpack.io/使用https://jitpack.io/

allprojects {
    repositories { 
        jcenter()
        maven { url "https://jitpack.io" }
    }
}
dependencies {
    compile 'com.github.User:Repo:Tag'
}

This is for Kotlin DSL (build.gradle.kts):这适用于Kotlin DSL (build.gradle.kts):

repositories {
    // Other repositories...

    maven("https://jitpack.io")
    // OR maven { url = uri("https://jitpack.io") }
}

There are two places inside which you can insert the above code block:有两个地方可以插入上面的代码块:

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM