forked from davidwong/android-groovy-swissknife-dagger2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
30 lines (25 loc) · 877 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Top-level build file where you can add configuration options common to all sub-projects/modules.
// https://dzone.com/articles/creating-android-apps-groovy
// http://hosain.net/2015/02/07/getting-started-with-android-development-using-groovy-2.4-and-android-studio.html
buildscript {
repositories {
jcenter()
}
dependencies {
//classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.android.tools.build:gradle:2.3.3'
// check current version here
// https://github.com/groovy/groovy-android-gradle-plugin
//classpath 'org.codehaus.groovy:gradle-groovy-android-plugin:0.3.8'
classpath 'org.codehaus.groovy:groovy-android-gradle-plugin:1.1.0'
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}