-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
25 lines (22 loc) · 897 Bytes
/
dependencies.gradle
File metadata and controls
25 lines (22 loc) · 897 Bytes
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
ext {
// Dependencies Versions
androidSupportLibVersion = "23.1.0"
daggerVersion = "2.0.2"
daggerCompilerVersion = "2.0.2"
javaxAnnotationVersion = "1.0"
rxAndroidVersion = "1.0.1"
rxJavaVersion = "1.0.16"
// Test Dependencies Versions
junitVersion = "4.12"
appDependencies = [
appcompact : "com.android.support:appcompat-v7:${androidSupportLibVersion}",
dagger : "com.google.dagger:dagger:${daggerVersion}",
daggerCompiler : "com.google.dagger:dagger-compiler:${daggerCompilerVersion}",
javaxAnnotation: "javax.annotation:jsr250-api:${javaxAnnotationVersion}",
rxAndroid : "io.reactivex:rxandroid:${rxAndroidVersion}",
rxJava : "io.reactivex:rxjava:${rxJavaVersion}",
]
testDependencies = [
junit: "junit:junit:${junitVersion}",
]
}