1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- plugins {
- id 'com.android.application'
- id 'kotlin-android'
- }
- android {
- compileSdkVersion 30
- buildToolsVersion "30.0.3"
- defaultConfig {
- applicationId "com.dy.sy.ticket_check"
- minSdkVersion 21
- targetSdkVersion 30
- versionCode 3
- versionName "1.3"
- ndk {
- abiFilter "armeabi-v7a"
- }
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = '1.8'
- }
- viewBinding {
- enabled = true
- }
- sourceSets {
- main {
- jniLibs.srcDirs = ['libs']
- }
- }
- }
- dependencies {
- implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
- implementation 'androidx.core:core-ktx:1.3.1'
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'com.google.android.material:material:1.2.1'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
- implementation project(path: ':core_lib')
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- testImplementation 'junit:junit:4.+'
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- //条码二维码扫描
- //AndroidX 版本
- implementation 'com.github.jenly1314:zxing-lite:2.1.0'
- implementation 'com.google.code.gson:gson:2.8.6'
- implementation 'pub.devrel:easypermissions:1.3.0'
- implementation 'com.tencent.bugly:crashreport:latest.release'
- implementation project(':cameraui')
- implementation files('libs/baidu_idcard.jar')
- implementation files('libs/baidu_easymobile_license.jar')
- implementation files('libs/bd_unifylicense.jar')
- implementation files('libs/liantian.jar')
- }
|