-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
48 lines (46 loc) · 2.52 KB
/
dependencies.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
43
44
45
46
47
48
ext {
//Project dependencies
jUnitTestVersion = '4.12'
appCompatVersion = '23.4.0'
kotlinVersion = '1.0.1-2'
kotterKnifeVersion = '0.1.0-SNAPSHOT'
daggerCompilerVersion = '2.0.2'
daggerVersion = '2.0.2'
javaxAnnotationVersion = '10.0-b28'
retrofitVersion = '2.0.1'
slimberVersion = '1.0.4'
retrofitRxAdapterVersion = '2.0.0'
rxAndroidVersion = '1.1.0'
rxKotlinVersion = '0.55.0'
stethoVersion = '1.3.1'
designVersion = '23.4.0'
cardViewVersion = '23.0.1'
recyclerViewVersion = '23.0.1'
reactiveLocationVersion = '0.8@aar'
serviceLocationVersion = '8.4.0'
mapsVersion = '8.4.0'
dependencies = [
jUnitTest : "junit:junit:$jUnitTestVersion",
appCompat : "com.android.support:appcompat-v7:$appCompatVersion",
kotlin : "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion",
kotterKnife : "com.jakewharton:kotterknife:$kotterKnifeVersion",
daggerCompiler : "com.google.dagger:dagger-compiler:$daggerCompilerVersion",
dagger : "com.google.dagger:dagger:$daggerVersion",
javaxAnnotation : "org.glassfish:javax.annotation:$javaxAnnotationVersion",
kotlinGenerator : "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion",
retrofit2 : "com.squareup.retrofit2:retrofit:$retrofitVersion",
simpleXMLConverter: "com.squareup.retrofit2:converter-simplexml:$retrofitVersion",
slimber : "com.github.PaulWoitaschek:Slimber:$slimberVersion",
retrofitRxAdapter : "com.squareup.retrofit2:adapter-rxjava:$retrofitRxAdapterVersion",
rxAndroid : "io.reactivex:rxandroid:$rxAndroidVersion",
rxKotlin : "io.reactivex:rxkotlin:$rxKotlinVersion",
stetho : "com.facebook.stetho:stetho:$stethoVersion",
stethoOkHttp : "com.facebook.stetho:stetho-okhttp3:$stethoVersion",
design : "com.android.support:design:$designVersion",
cardView : "com.android.support:cardview-v7:$cardViewVersion",
recyclerView : "com.android.support:recyclerview-v7:$recyclerViewVersion",
reactiveLocation : "pl.charmas.android:android-reactive-location:$reactiveLocationVersion",
serviceLocation : "com.google.android.gms:play-services-location:$serviceLocationVersion",
maps : "com.google.android.gms:play-services-maps:$mapsVersion",
]
}