blob: af9ffd0ea3354f28d520f9c380d95126926d43ba [file] [log] [blame]
Adrien Béraudb00ed3f2015-06-07 15:36:06 -04001// Top-level build file where you can add configuration options common to all sub-projects/modules.
2buildscript {
3 repositories {
4 jcenter()
5 }
6 dependencies {
Adrien Béraud510b1502016-02-03 11:40:55 -05007 classpath 'com.android.tools.build:gradle:2.0.+'
Adrien Béraudb00ed3f2015-06-07 15:36:06 -04008
9 // NOTE: Do not place your application dependencies here; they belong
10 // in the individual module build.gradle files
11 }
12}
13allprojects {
14 repositories {
15 mavenCentral()
16 }
17}
18
19dependencies {
Adrien Béraud6d881d92015-06-17 16:22:23 -040020}
21task wrapper(type: Wrapper) {
Adrien Béraud510b1502016-02-03 11:40:55 -050022 gradleVersion = '2.10' //version required
Adrien Béraud6d881d92015-06-17 16:22:23 -040023}