blob: a7a159e5ea4ea6b1b5487132ba75b30a63cd68c0 [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 {
Alexandre Lision6d3d2712016-05-14 16:10:44 -04007 classpath 'com.android.tools.build:gradle:2.1.2'
8 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éraud510b1502016-02-03 11:40:55 -050023 gradleVersion = '2.10' //version required
Adrien Béraud6d881d92015-06-17 16:22:23 -040024}