Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import java.util.Properties
import java.io.FileInputStream

Expand All @@ -7,7 +6,6 @@ plugins {
// START: FlutterFire Configuration
// firebase plugins should be managed by the conditional apply below.
// END: FlutterFire Configuration
id("kotlin-android")
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id("dev.flutter.flutter-gradle-plugin")
}
Expand Down Expand Up @@ -72,12 +70,6 @@ if (isRelease) {
apply(plugin = "com.google.firebase.crashlytics")
}

kotlin {
compilerOptions {
jvmTarget = JvmTarget.fromTarget("17")
}
}

dependencies {
implementation("androidx.core:core-splashscreen:1.2.0")
implementation(platform("com.google.firebase:firebase-bom:34.9.0"))
Expand Down
1 change: 1 addition & 0 deletions android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true
android.newDsl=false
3 changes: 1 addition & 2 deletions android/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ pluginManagement {

plugins {
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
id("com.android.application") version "8.13.2" apply false
id("com.android.application") version "9.0.1" apply false
// START: FlutterFire Configuration
id("com.google.gms.google-services") version("4.4.2") apply false
id("com.google.firebase.crashlytics") version("3.0.2") apply false
// END: FlutterFire Configuration
id("org.jetbrains.kotlin.android") version "2.3.0" apply false
}

include(":app")
Loading