123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 30
- buildToolsVersion "30.0.3"
- configurations {
- cleanedAnnotations
- compile.exclude group: 'org.jetbrains' , module:'annotations'
- }
- defaultConfig {
- applicationId "com.shuoyue.check"
- minSdkVersion 19
- 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')
- }
|