| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- 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 = "app.xixi.nomo"
- compileSdk = flutter.compileSdkVersion
- ndkVersion = flutter.ndkVersion
- compileOptions {
- 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 = "app.xixi.nomo"
- // 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
- versionCode = flutter.versionCode
- versionName = flutter.versionName
- ndk {
- abiFilters.add("armeabi-v7a")
- abiFilters.add("arm64-v8a")
- }
- }
- sourceSets {
- getByName("main") {
- jniLibs.srcDirs("libs")
- }
- }
- packaging {
- jniLibs {
- useLegacyPackaging = true
- keepDebugSymbols += "**/*.so"
- }
- resources {
- excludes += ":META-INF/LICENSE"
- excludes += ":META-INF/LICENSE.md"
- excludes += ":META-INF/NOTICE"
- }
- }
- 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")
- }
- }
- }
- flutter {
- source = "../.."
- }
- dependencies {
- // Core Libraries
- implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.aar", "*.jar"))))
- implementation("com.google.code.gson:gson:2.13.2")
- }
|