-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdependencies.gradle
More file actions
20 lines (19 loc) · 987 Bytes
/
dependencies.gradle
File metadata and controls
20 lines (19 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ext {
supportVersion = '23.1.1'
buildToolsVersionVariable = "25.0.0"
sourceCompatibilityVersion = JavaVersion.VERSION_1_8
targetCompatibilityVersion = JavaVersion.VERSION_1_8
libs = [
/* Application dependencies */
retrolambda : 'net.orfjackal.retrolambda:retrolambda:2.3.0',
support : "com.android.support:support-v4:$supportVersion",
support_annotations: "com.android.support:support-annotations:$supportVersion",
rxjava : 'io.reactivex:rxjava:1.1.7',
rxandroid : 'io.reactivex:rxandroid:1.2.1',
groovy : 'org.codehaus.groovy:groovy:2.4.6:grooid',
spock : ['org.spockframework:spock-core:1.0-groovy-2.4',
'cglib:cglib-nodep:3.2.1',
'org.objenesis:objenesis:2.2'],
robospock : 'org.robospock:robospock:1.0.1'
]
}