blob: fc5195dda8df5366b546cf1e9065ec75e2dc4e3f [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éraud2038c4d2016-10-12 14:58:31 -04007 classpath 'com.android.tools.build:gradle:2.2.1'
Alexandre Lision6d3d2712016-05-14 16:10:44 -04008 classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
Adrien Béraudb00ed3f2015-06-07 15:36:06 -04009
10 // NOTE: Do not place your application dependencies here; they belong
11 // in the individual module build.gradle files
12 }
13}
14allprojects {
15 repositories {
16 mavenCentral()
17 }
18}
19
20dependencies {
Adrien Béraud6d881d92015-06-17 16:22:23 -040021}
22task wrapper(type: Wrapper) {
Adrien Béraud36beae32016-09-20 14:50:07 -040023 gradleVersion = '2.14.1' //version required
Adrien Béraud6d881d92015-06-17 16:22:23 -040024}