@@ -2,7 +2,6 @@ apply plugin: 'com.android.application'
22
33android {
44 compileSdkVersion 27
5- buildToolsVersion ' 27.0.2'
65
76 defaultConfig {
87 applicationId " com.google.firebase.example.fireeats"
@@ -29,35 +28,35 @@ android {
2928
3029dependencies {
3130 // Firestore
32- compile ' com.google.firebase:firebase-firestore:12.0.1'
31+ implementation ' com.google.firebase:firebase-firestore:12.0.1'
3332
3433 // Other Firebase/Play services deps
35- compile ' com.google.firebase:firebase-auth:12.0.1'
36- compile ' com.google.android.gms:play-services-auth:12.0.1'
34+ implementation ' com.google.firebase:firebase-auth:12.0.1'
35+ implementation ' com.google.android.gms:play-services-auth:12.0.1'
3736
3837 // FirebaseUI (for authentication)
39- compile ' com.firebaseui:firebase-ui-auth:3.3.0'
38+ implementation ' com.firebaseui:firebase-ui-auth:3.3.0'
4039
4140 // ButterKnife (for sample code brevity)
42- compile ' com.jakewharton:butterknife:8.8.1'
41+ implementation ' com.jakewharton:butterknife:8.8.1'
4342 annotationProcessor ' com.jakewharton:butterknife-compiler:8.8.1'
4443
4544 // Support Libs
46- compile ' com.android.support:appcompat-v7:27.1.0'
47- compile ' com.android.support:animated-vector-drawable:27.1.0'
48- compile ' com.android.support:cardview-v7:27.1.0'
49- compile ' com.android.support:customtabs:27.1.0'
50- compile ' com.android.support:design:27.1.0'
51- compile ' com.android.support:recyclerview-v7:27.1.0'
45+ implementation ' com.android.support:appcompat-v7:27.1.0'
46+ implementation ' com.android.support:animated-vector-drawable:27.1.0'
47+ implementation ' com.android.support:cardview-v7:27.1.0'
48+ implementation ' com.android.support:customtabs:27.1.0'
49+ implementation ' com.android.support:design:27.1.0'
50+ implementation ' com.android.support:recyclerview-v7:27.1.0'
5251
5352 // Android architecture components
54- compile ' android.arch.lifecycle:runtime:1.1.1'
55- compile ' android.arch.lifecycle:extensions:1.1.1'
53+ implementation ' android.arch.lifecycle:runtime:1.1.1'
54+ implementation ' android.arch.lifecycle:extensions:1.1.1'
5655 annotationProcessor ' android.arch.lifecycle:compiler:1.1.1'
57-
56+
5857 // Third-party libraries
59- compile ' me.zhanghai.android.materialratingbar:library:1.2.0'
60- compile ' com.github.bumptech.glide:glide:3.7.0'
58+ implementation ' me.zhanghai.android.materialratingbar:library:1.2.0'
59+ implementation ' com.github.bumptech.glide:glide:3.7.0'
6160}
6261
6362apply plugin : ' com.google.gms.google-services'
0 commit comments