-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathbuild.gradle
40 lines (33 loc) · 821 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
31
32
33
34
35
36
37
38
39
buildscript {
repositories {
jcenter()
mavenCentral()
maven { url 'https://dl.bintray.com/drummer-aidan/maven' }
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'me.tatarka:gradle-retrolambda:3.6.0'
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url 'https://dl.bintray.com/drummer-aidan/maven' }
maven { url 'https://jitpack.io' }
}
}
allprojects.each { p ->
p.buildDir "bin"
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
compileSdkVersion = 25
buildToolsVersion = "25.0.3"
minSdkVersion = 14
targetSdkVersion = 25
}