Skip to content

Commit 942348e

Browse files
author
Sebastian Owodzin
committed
updated Kotlin to 1.5.0, Android SDK/Gradle Plugin, dependencies, Gradle wrapper
1 parent 8aed2b3 commit 942348e

File tree

18 files changed

+48
-48
lines changed

18 files changed

+48
-48
lines changed

build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import org.gradle.api.tasks.testing.logging.TestExceptionFormat
44
import org.gradle.api.tasks.testing.logging.TestLogEvent
55

66
plugins {
7-
kotlin("multiplatform") version "1.4.31" apply false
7+
kotlin("multiplatform") version "1.5.0" apply false
88
id("base")
99
}
1010

@@ -18,12 +18,12 @@ buildscript {
1818
}
1919
}
2020
dependencies {
21-
classpath("com.android.tools.build:gradle:4.0.2")
21+
classpath("com.android.tools.build:gradle:4.2.0")
2222
classpath("com.adarshr:gradle-test-logger-plugin:2.1.1")
2323
}
2424
}
2525

26-
val targetSdkVersion by extra(28)
26+
val targetSdkVersion by extra(30)
2727
val minSdkVersion by extra(16)
2828

2929
// TODO: Hierarchical project structures are not fully supported in IDEA, enable only for a regular built (https://youtrack.jetbrains.com/issue/KT-35011)
@@ -198,15 +198,15 @@ subprojects {
198198

199199
dependencies {
200200
"commonMainImplementation"(kotlin("stdlib-common"))
201-
"commonMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
201+
"commonMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0-RC")
202202
"jsMainImplementation"(kotlin("stdlib-js"))
203-
"androidMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.4.3")
203+
"androidMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.0-RC")
204204
"commonTestImplementation"(kotlin("test-common"))
205205
"commonTestImplementation"(kotlin("test-annotations-common"))
206-
"commonTestImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
206+
"commonTestImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0-RC")
207207
"jsTestImplementation"(kotlin("test-js"))
208208
"androidAndroidTestImplementation"(kotlin("test-junit"))
209-
"androidAndroidTestImplementation"("junit:junit:4.13.1")
209+
"androidAndroidTestImplementation"("junit:junit:4.13.2")
210210
"androidAndroidTestImplementation"("androidx.test:core:1.3.0")
211211
"androidAndroidTestImplementation"("androidx.test.ext:junit:1.1.2")
212212
"androidAndroidTestImplementation"("androidx.test:runner:1.3.0")

firebase-app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ kotlin {
8484
sourceSets {
8585
all {
8686
languageSettings.apply {
87-
apiVersion = "1.4"
88-
languageVersion = "1.4"
87+
apiVersion = "1.5"
88+
languageVersion = "1.5"
8989
progressiveMode = true
9090
}
9191
}

firebase-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
2626
"@gitlive/firebase-common": "1.2.0",
27-
"firebase": "8.2.10",
28-
"kotlin": "1.4.31",
29-
"kotlinx-coroutines-core": "1.4.3"
27+
"firebase": "8.4.3",
28+
"kotlin": "1.5.0",
29+
"kotlinx-coroutines-core": "1.5.0-RC"
3030
}
3131
}

firebase-auth/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ kotlin {
109109
sourceSets {
110110
all {
111111
languageSettings.apply {
112-
apiVersion = "1.4"
113-
languageVersion = "1.4"
112+
apiVersion = "1.5"
113+
languageVersion = "1.5"
114114
progressiveMode = true
115115
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
116116
}
@@ -125,7 +125,7 @@ kotlin {
125125

126126
val androidMain by getting {
127127
dependencies {
128-
api("com.google.firebase:firebase-auth:20.0.3")
128+
api("com.google.firebase:firebase-auth:20.0.4")
129129
}
130130
}
131131

firebase-auth/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
2626
"@gitlive/firebase-app": "1.2.0",
27-
"firebase": "8.2.10",
28-
"kotlin": "1.4.31",
29-
"kotlinx-coroutines-core": "1.4.3"
27+
"firebase": "8.4.3",
28+
"kotlin": "1.5.0",
29+
"kotlinx-coroutines-core": "1.5.0-RC"
3030
}
3131
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAuthBinary.json" == 7.7.0
1+
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAuthBinary.json" == 7.11.0

firebase-common/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version = project.property("firebase-common.version") as String
99
plugins {
1010
id("com.android.library")
1111
kotlin("multiplatform")
12-
kotlin("plugin.serialization") version "1.4.31"
12+
kotlin("plugin.serialization") version "1.5.0"
1313
}
1414

1515
android {
@@ -65,8 +65,8 @@ kotlin {
6565
sourceSets {
6666
all {
6767
languageSettings.apply {
68-
apiVersion = "1.4"
69-
languageVersion = "1.4"
68+
apiVersion = "1.5"
69+
languageVersion = "1.5"
7070
progressiveMode = true
7171
useExperimentalAnnotation("kotlin.Experimental")
7272
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
@@ -77,7 +77,7 @@ kotlin {
7777

7878
val commonMain by getting {
7979
dependencies {
80-
api("org.jetbrains.kotlinx:kotlinx-serialization-core:1.1.0")
80+
api("org.jetbrains.kotlinx:kotlinx-serialization-core:1.2.0")
8181
}
8282
}
8383

firebase-common/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-multiplatform-sdk",
2525
"dependencies": {
26-
"firebase": "8.2.10",
27-
"kotlin": "1.4.31",
28-
"kotlinx-coroutines-core": "1.4.3",
26+
"firebase": "8.4.3",
27+
"kotlin": "1.5.0",
28+
"kotlinx-coroutines-core": "1.5.0-RC",
2929
"kotlinx-serialization-kotlinx-serialization-runtime": "1.1.0"
3030
}
3131
}

firebase-database/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ kotlin {
8585
sourceSets {
8686
all {
8787
languageSettings.apply {
88-
apiVersion = "1.4"
89-
languageVersion = "1.4"
88+
apiVersion = "1.5"
89+
languageVersion = "1.5"
9090
progressiveMode = true
9191
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
9292
useExperimentalAnnotation("kotlinx.coroutines.FlowPreview")
@@ -103,7 +103,7 @@ kotlin {
103103

104104
val androidMain by getting {
105105
dependencies {
106-
api("com.google.firebase:firebase-database:19.6.0")
106+
api("com.google.firebase:firebase-database:19.7.0")
107107
}
108108
}
109109

firebase-database/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
2626
"@gitlive/firebase-app": "1.2.0",
27-
"firebase": "8.2.10",
28-
"kotlin": "1.4.31",
29-
"kotlinx-coroutines-core": "1.4.3"
27+
"firebase": "8.4.3",
28+
"kotlin": "1.5.0",
29+
"kotlinx-coroutines-core": "1.5.0-RC"
3030
}
3131
}

0 commit comments

Comments
 (0)