我正在尝试从https://github.com/chrisbanes/ActionBar-PullToRefresh/wiki/QuickStart-ABC实施ActionBar-PullToRefresh。我刚刚从Eclipse切换到Android-Studio,所以我对AS和Gradle都是新手。
chrisbanes在网站上写道:
将ActionBar-PullToRefresh添加到项目的最简单方法是通过 Gradle,您只需要将以下依赖项添加到您的 的build.gradle:
dependencies {
mavenCentral()
compile 'com.github.chrisbanes.actionbarpulltorefresh:extra-abc:+'
}
这是否意味着我不必下载库而Gradle负责处理它以便我总是拥有最新版本?我只是不知道在哪里放上面的那一行。我在我的root中有两个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')
}
}
我是否必须在某处添加存储库?
答案 0 :(得分:46)
当您将此行添加到项目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会自动为您下载所需的资源。
答案 1 :(得分:25)
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
dependencies {
compile 'com.github.User:Repo:Tag'
}