plugins { id("com.android.application") id("kotlin-android") // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. id("dev.flutter.flutter-gradle-plugin") } android { namespace = "com.example.flutter_monisuo" compileSdk = flutter.compileSdkVersion ndkVersion = flutter.ndkVersion compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = JavaVersion.VERSION_17.toString() } signingConfigs { create("release") { storeFile = file("D:/build_temp/upload.jks") storePassword = "rattan123" keyAlias = "upload" keyPassword = "rattan123" } } defaultConfig { applicationId = "com.rattan.monisuo" minSdk = 24 targetSdk = 34 versionCode = flutter.versionCode versionName = flutter.versionName } buildTypes { release { signingConfig = signingConfigs.getByName("release") } } } flutter { source = "../.." }