Skip to content

Commit bced32f

Browse files
committed
fix(android): migrate to built-in Kotlin
1 parent 8e6bbe6 commit bced32f

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

android/app/build.gradle.kts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
21
import java.util.Properties
32
import java.io.FileInputStream
43

@@ -7,7 +6,6 @@ plugins {
76
// START: FlutterFire Configuration
87
// firebase plugins should be managed by the conditional apply below.
98
// END: FlutterFire Configuration
10-
id("kotlin-android")
119
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
1210
id("dev.flutter.flutter-gradle-plugin")
1311
}
@@ -72,12 +70,6 @@ if (isRelease) {
7270
apply(plugin = "com.google.firebase.crashlytics")
7371
}
7472

75-
kotlin {
76-
compilerOptions {
77-
jvmTarget = JvmTarget.fromTarget("17")
78-
}
79-
}
80-
8173
dependencies {
8274
implementation("androidx.core:core-splashscreen:1.2.0")
8375
implementation(platform("com.google.firebase:firebase-bom:34.9.0"))

android/settings.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ plugins {
2424
id("com.google.gms.google-services") version("4.4.2") apply false
2525
id("com.google.firebase.crashlytics") version("3.0.2") apply false
2626
// END: FlutterFire Configuration
27-
id("org.jetbrains.kotlin.android") version "2.3.0" apply false
2827
}
2928

3029
include(":app")

0 commit comments

Comments
 (0)