-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (35 loc) · 959 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
40
41
42
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'me.tatarka:gradle-retrolambda:3.4.0'
}
}
allprojects {
repositories {
jcenter()
}
}
ext {
// Sdk and tools
minSdkVersion = 19
targetSdkVersion = 24
compileSdkVersion = 24
buildToolsVersion = '25.0.0'
// App dependencies
supportLibraryVersion = '25.0.0'
junitVersion = '4.12'
runnerVersion = '0.5'
multiDexVersion = '1.0.1'
constraintLayout = '1.0.0-beta5'
expandableRecyclerview= '3.0.0-RC1'
rxAndroidVersion = '1.2.1'
rxPermissionsVersion = '0.7.0@aar'
rxBindingVersion = '0.4.0'
eventBusVersion = '3.0.0'
androidAnnotationsVersion = '4.0.0'
}