123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- plugins {
- id "com.android.application"
- id "kotlin-android"
- id "dev.flutter.flutter-gradle-plugin"
- }
- def localProperties = new Properties()
- def localPropertiesFile = rootProject.file('local.properties')
- if (localPropertiesFile.exists()) {
- localPropertiesFile.withReader('UTF-8') { reader ->
- localProperties.load(reader)
- }
- }
- def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
- if (flutterVersionCode == null) {
- flutterVersionCode = '1'
- }
- def flutterVersionName = localProperties.getProperty('flutter.versionName')
- if (flutterVersionName == null) {
- flutterVersionName = '1.0'
- }
- android {
- namespace "com.gnhz.clinic.eitc_erm_app"
- compileSdk flutter.compileSdkVersion
- ndkVersion "26.1.10909125"
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = '1.8'
- }
- sourceSets {
- main.java.srcDirs += 'src/main/kotlin'
- }
- defaultConfig {
- applicationId "com.eitchsyh.patient"
- // You can update the following values to match your application needs.
- // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
- minSdkVersion flutter.minSdkVersion
- targetSdkVersion flutter.targetSdkVersion
- versionCode flutterVersionCode.toInteger()
- versionName flutterVersionName
- multiDexEnabled true
- }
- signingConfigs {
- release {
- storeFile file('../key.jks')
- storePassword 'guonenghuizhi888'
- keyAlias 'jsyg'
- keyPassword 'guonenghuizhi888'
- }
- }
- buildTypes {
- release {
- minifyEnabled true//开启混淆
- shrinkResources true//去除无用资源
- zipAlignEnabled true//资源对齐
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- signingConfig signingConfigs.release
- }
- }
- packagingOptions {
- resources {
- pickFirsts += ['META-INF/library_release.kotlin_module']
- }
- }
- buildFeatures {
- viewBinding true
- }
- }
- flutter {
- source '../..'
- }
- dependencies {
- implementation 'com.github.chrisbanes:PhotoView:2.0.0'
- implementation 'androidx.appcompat:appcompat:1.4.1'
- implementation 'com.google.android.material:material:1.4.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
- implementation 'org.apache.commons:commons-lang3:3.12.0'
- }
|