forked from f2prateek/rx-preferences
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (34 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
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
}
}
allprojects {
repositories {
mavenCentral()
jcenter()
}
group = GROUP
version = VERSION_NAME
}
ext {
minSdkVersion = 9
targetSdkVersion = 24
compileSdkVersion = 24
buildToolsVersion = '23.0.3'
javaVersion = JavaVersion.VERSION_1_7
}
ext.deps = [
annotations: 'com.android.support:support-annotations:23.1.1',
rxjava: 'io.reactivex:rxjava:1.2.1',
rxandroid: 'io.reactivex:rxandroid:1.2.1',
rxbinding: 'com.jakewharton.rxbinding:rxbinding:0.3.0',
butterknife: 'com.jakewharton:butterknife:7.0.1',
junit: 'junit:junit:4.12',
assertj: 'org.assertj:assertj-core:1.7.0',
robolectric: 'org.robolectric:robolectric:3.0',
]