blob: f0c9817f08bb662062ac9f8f8ddaf804b83254f1 [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éraudb179bab2015-10-08 12:04:22 -04007 classpath 'com.android.tools.build:gradle:1.3.+'
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) {
22 gradleVersion = '2.4' //version required
23}