Подтвердить что ты не робот

Добавить библиотеку github в зависимости от проекта Android-Studio

Я пытаюсь реализовать ActionBar-PullToRefresh из https://github.com/chrisbanes/ActionBar-PullToRefresh/wiki/QuickStart-ABC. Я просто переключился с Eclipse на Android-Studio, поэтому я абсолютно не знаком с AS и Gradle.

chrisbanes пишет на сайте:

Самый простой способ добавить ActionBar-PullToRefresh в ваш проект - через Gradle, вам просто нужно добавить следующую зависимость к вашему build.gradle:

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

Означает ли это, что мне не нужно загружать библиотеку, а Gradle позаботится об этом, чтобы у меня всегда была последняя версия? Я просто не знаю, где поставить вышеприведенную линию. У меня есть два файла 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.+'
    }
}

и тот, что в моем проекте выглядит следующим образом:

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

Нужно ли мне где-то добавлять репозиторий?

4b9b3361

Ответ 1

Он будет работать, если вы поместите эту строку в свой проект build.gradle в разделе dependencies:

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

Кроме того, добавьте:

repositories {
    mavenCentral()
}

Итак:

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 автоматически загрузит необходимые ресурсы.

Ответ 2

Используйте https://jitpack.io/

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