Skip to content

Commit 9d9b6fe

Browse files
committed
fix kotlin dep
1 parent 7946a88 commit 9d9b6fe

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import com.google.firebase.gradle.plugins.license.LicenseResolverPlugin
1616
import com.google.firebase.gradle.MultiProjectReleasePlugin
1717

1818
buildscript {
19-
ext.kotlinVersion = '1.4.32'
19+
ext.kotlinVersion = '1.7.10'
2020
repositories {
2121
google()
2222
mavenCentral()

firebase-common/firebase-common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ dependencies {
7575
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
7676

7777
// needed for Kotlin detection to compile, but not necessarily present at runtime.
78-
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
78+
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
7979

8080
testImplementation 'androidx.test:runner:1.2.0'
8181
testImplementation 'androidx.test.ext:junit:1.1.1'

firebase-common/ktx/ktx.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ android {
3636
}
3737

3838
dependencies {
39+
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
3940
implementation project(':firebase-common')
4041
implementation project(':firebase-components')
4142
implementation 'androidx.annotation:annotation:1.1.0'

0 commit comments

Comments
 (0)