| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- plugins {
- id "com.android.application"
- // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
- id "dev.flutter.flutter-gradle-plugin"
- }
- android {
- namespace "com.vber.chicken_farm"
- compileSdk flutter.compileSdkVersion
- ndkVersion flutter.ndkVersion
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- sourceSets {
- main {
- jni.srcDirs = []
- jniLibs.srcDirs = ['libs']
- }
- }
- defaultConfig {
- // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
- applicationId "com.vber.chicken_farm"
- // 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 {
- // 仅保留MT6765支持的armeabi-v7a
- abiFilters 'armeabi-v7a'
- }
- }
- 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.debug
- }
- }
- lintOptions {
- checkReleaseBuilds false
- abortOnError false
- }
- }
- dependencies {
- // implementation fileTree(include: ['*.aar'], dir: 'libs')
- implementation files('libs\\lcrrgxmodule-release.aar')
- }
- flutter {
- source = "../.."
- }
|