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.furibase" //compileSdk = flutter.compileSdkVersion compileSdk = 35 //ndkVersion = "27.0.12077973" //ndkVersion = flutter.ndkVersion ndkVersion = "23.1.7779620" compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = JavaVersion.VERSION_17.toString() } defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId = "com.paj.freekake" // You can update the following values to match your application needs. // For more information, see: https://flutter.dev/to/review-gradle-config. //minSdk = flutter.minSdkVersion //targetSdk = flutter.targetSdkVersion //minSdk = 24 // Set to 24 or higher minSdk = 30 targetSdk = 35 versionCode = flutter.versionCode versionName = flutter.versionName } buildTypes { release { // TODO: Add your own signing config for the release build. // Signing with the debug keys for now, so `flutter run --release` works. signingConfig = signingConfigs.getByName("debug") } } dependencies { implementation("androidx.core:core-ktx:1.9.0") implementation("com.google.android.material:material:1.6.1") } } flutter { source = "../.." } dependencies { implementation(project(":unityLibrary")) implementation(project(":flutter_unity_widget")) }