@@ -7,6 +7,7 @@ buildscript {
7
7
classpath ' io.fabric.tools:gradle:1.+'
8
8
}
9
9
}
10
+
10
11
apply plugin : ' com.android.application'
11
12
apply plugin : ' io.fabric'
12
13
@@ -50,29 +51,30 @@ dependencies {
50
51
repositories {
51
52
mavenCentral()
52
53
}
53
- compile fileTree(dir : ' libs' , include : [' *.jar' ])
54
+
55
+ annotationProcessor ' com.squareup.dagger:dagger-compiler:' + project. DAGGER_VERSION
56
+ implementation fileTree(dir : ' libs' , include : [' *.jar' ])
57
+
54
58
wearApp project(' :wear' )
55
- provided ' com.squareup.dagger:dagger-compiler:' + project. DAGGER_VERSION
56
- compile project(' :opendata' )
57
- compile project(' :api' )
58
- compile project(' :common' )
59
+ implementation project(' :opendata' )
60
+ implementation project(' :api' )
61
+ implementation project(' :common' )
59
62
60
- compile ' com.android.support:appcompat-v7:' + project. SUPPORT_VERSION
61
- compile ' com.android.support:support-v4:' + project. SUPPORT_VERSION
62
- compile ' com.android.support:design:' + project. SUPPORT_VERSION
63
- compile ' com.google.android.gms:play-services-wearable:' + project. PLAY_SERVICES_VERSION
64
- compile ' com.google.android.gms:play-services-maps:' + project. PLAY_SERVICES_VERSION
65
- compile ' io.reactivex:rxjava:' + project. RXJAVA_VERSION
66
- compile ' io.reactivex:rxandroid:' + project. RXANDROID_VERSION
67
- compile ' com.squareup.dagger:dagger:' + project. DAGGER_VERSION
68
- compile ' com.sothree.slidinguppanel:library:3.0.0'
69
- compile ' com.astuetz:pagerslidingtabstrip:1.0.1'
63
+ implementation ' com.android.support:appcompat-v7:' + project. SUPPORT_VERSION
64
+ implementation ' com.android.support:support-v4:' + project. SUPPORT_VERSION
65
+ implementation ' com.android.support:design:' + project. SUPPORT_VERSION
66
+ implementation ' com.google.android.gms:play-services-wearable:' + project. PLAY_SERVICES_VERSION
67
+ implementation ' com.google.android.gms:play-services-maps:' + project. PLAY_SERVICES_VERSION
68
+ implementation ' io.reactivex:rxjava:' + project. RXJAVA_VERSION
69
+ implementation ' io.reactivex:rxandroid:' + project. RXANDROID_VERSION
70
+ implementation ' com.squareup.dagger:dagger:' + project. DAGGER_VERSION
71
+ implementation ' com.sothree.slidinguppanel:library:3.0.0'
72
+ implementation ' com.astuetz:pagerslidingtabstrip:1.0.1'
70
73
71
- compile (' io.nlopez.smartlocation:library:3.2.7' ) {
74
+ implementation (' io.nlopez.smartlocation:library:3.2.7' ) {
72
75
transitive = false
73
76
}
74
- compile (' com.crashlytics.sdk.android:crashlytics:2.6.2@aar' ) {
77
+ implementation (' com.crashlytics.sdk.android:crashlytics:2.6.2@aar' ) {
75
78
transitive = true ;
76
79
}
77
-
78
80
}
0 commit comments