| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 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 = "io.github.jianboy.flutter_paydemo"
- compileSdk = flutter.compileSdkVersion
- ndkVersion = "27.0.12077973"
- compileOptions {
- sourceCompatibility = JavaVersion.VERSION_17
- targetCompatibility = JavaVersion.VERSION_17
- }
- defaultConfig {
- // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
- applicationId = "io.github.jianboy.flutter_paydemo"
- // 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
- // Uses the version code from pubspec.yaml. When using split APKs, 1000 * ABI_VERSION
- // is added automatically by Flutter. (https://developer.android.com/studio/build/configure-apk-splits#configure-APK-versions)
- // You can force using the value of versionCode by specifying the `-P force-version-code-ignoring-abi=true`
- // flag during build.
- 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")
- // 临时禁用 lint 以绕过依赖问题
- isMinifyEnabled = false
- isShrinkResources = false
- }
- }
- // 禁用 lint 任务
- lint {
- checkReleaseBuilds = false
- abortOnError = false
- }
- }
- kotlin {
- compilerOptions {
- jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17
- }
- }
- flutter {
- source = "../.."
- }
|