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 = "apps.xy.xianyan" compileSdk = flutter.compileSdkVersion ndkVersion = flutter.ndkVersion compileOptions { isCoreLibraryDesugaringEnabled = true sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 } kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId = "apps.xy.xianyan" // You can update the following values to match your application needs. // For more information, see: https://flutter.dev/to/review-gradle-config. minSdk = 28 targetSdk = flutter.targetSdkVersion versionCode = flutter.versionCode versionName = flutter.versionName // 排除 armeabi-v7a 以减小包体积,支持 arm64-v8a + x86_64(模拟器/Chrome OS) ndk { abiFilters.clear() abiFilters.add("arm64-v8a") abiFilters.add("x86_64") } } 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") // release 包同样排除 armeabi-v7a ndk { abiFilters.clear() abiFilters.add("arm64-v8a") abiFilters.add("x86_64") } } } } flutter { source = "../.." } dependencies { coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.4") }