This repository was archived by the owner on Oct 27, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +19
-6
lines changed
kotlinx-coroutines-firebase-android Expand file tree Collapse file tree 2 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ apply plugin: 'kotlin-android'
5
5
apply plugin : ' kotlin-android-extensions'
6
6
7
7
android {
8
- compileSdkVersion 26
8
+ compileSdkVersion 27
9
9
defaultConfig {
10
10
applicationId " kotlinx.coroutines.firebase.app"
11
11
minSdkVersion 25
@@ -25,13 +25,17 @@ android {
25
25
dependencies {
26
26
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
27
27
implementation " org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version "
28
- implementation ' com.android.support:appcompat-v7:26.1.0'
29
-
30
- compile ' com.google.firebase:firebase-core:11.8.0'
28
+ implementation ' com.android.support:appcompat-v7:27.0.2'
31
29
32
30
testImplementation ' junit:junit:4.12'
33
31
androidTestImplementation ' com.android.support.test:runner:1.0.1'
34
32
androidTestImplementation ' com.android.support.test.espresso:espresso-core:3.0.1'
33
+
34
+ compile ' com.google.firebase:firebase-core:11.8.0'
35
+ compile ' com.google.firebase:firebase-database:11.8.0'
36
+ compile ' com.google.firebase:firebase-firestore:11.8.0'
37
+ compile ' com.google.firebase:firebase-storage:11.8.0'
38
+ compile ' com.google.firebase:firebase-auth:11.8.0'
35
39
}
36
40
37
41
apply plugin : ' com.google.gms.google-services'
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
+ apply plugin : ' kotlin-android'
4
+
5
+ apply plugin : ' kotlin-android-extensions'
6
+
3
7
android {
4
- compileSdkVersion 26
8
+ compileSdkVersion 27
5
9
6
10
7
11
@@ -26,13 +30,18 @@ android {
26
30
27
31
dependencies {
28
32
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
33
+ implementation " org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version "
34
+ implementation ' com.android.support:appcompat-v7:27.0.2'
29
35
30
- implementation ' com.android.support:appcompat-v7:26.1.0'
31
36
testImplementation ' junit:junit:4.12'
32
37
androidTestImplementation ' com.android.support.test:runner:1.0.1'
33
38
androidTestImplementation ' com.android.support.test.espresso:espresso-core:3.0.1'
34
39
35
40
compile ' com.google.firebase:firebase-core:11.8.0'
41
+ compile ' com.google.firebase:firebase-database:11.8.0'
42
+ compile ' com.google.firebase:firebase-firestore:11.8.0'
43
+ compile ' com.google.firebase:firebase-storage:11.8.0'
44
+ compile ' com.google.firebase:firebase-auth:11.8.0'
36
45
37
46
}
38
47
You can’t perform that action at this time.
0 commit comments