12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 30
- buildToolsVersion "30.0.3"
- configurations {
- cleanedAnnotations
- compile.exclude group: 'org.jetbrains' , module:'annotations'
- }
- signingConfigs {
- sign {
- storeFile file('key.jks')
- storePassword "123456"
- keyAlias "window"
- keyPassword "123456"
- }
- debug {
- storeFile file('key.jks')
- storePassword "123456"
- keyAlias "window"
- keyPassword "123456"
- }
- }
- defaultConfig {
- applicationId "com.shuoyue.check"
- minSdkVersion 21
- targetSdkVersion 30
- versionCode 4//
- versionName "1.4"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- multiDexEnabled true
- javaCompileOptions {
- annotationProcessorOptions { includeCompileClasspath = true }
- }
- ndk {
- abiFilter "armeabi-v7a"
- }
- vectorDrawables.useSupportLibrary = true
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- // packagingOptions {
- // exclude 'assets/HKZ.bmp'
- // exclude 'assets/base.dat'
- // exclude 'assets/HKB.bmp'
- // }
- }
- repositories {
- flatDir {
- dirs project(':id_reader_dc2').file('libs')
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.3.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
- implementation project(path: ':scan_box_vbar')
- implementation project(path: ':id_reader_dc2')
- implementation project(path: ':SerialPortLibrary')
- implementation files('libs\\mina-core-2.0.21.jar')
- implementation files('libs\\slf4j-api-1.7.26.jar')
- // implementation project(path: ':identifylibrary')
- implementation 'com.google.android.material:material:1.3.0'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- // implementation project(path: ':autosize')
- implementation project(path: ':appbase')
- implementation project(path: ':commonutils')
- implementation project(path: ':appnetwork')
- annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'
- implementation 'com.google.zxing:core:3.4.0'//
- implementation 'com.solidfire.code.gson:gson:2.6.2'
- implementation 'org.greenrobot:eventbus:3.1.1'//
- annotationProcessor 'org.projectlombok:lombok:1.18.16'
- implementation 'com.tencent.bugly:crashreport:latest.release'
- implementation project( path: ':facelibrary')
- }
|