123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- plugins {
- id 'com.android.application'
- }
- android {
- compileSdkVersion 32
- defaultConfig {
-
-
-
-
- applicationId "com.telpo.faceSuZhouPark"
- minSdkVersion 21
- targetSdkVersion 32
- versionCode 21
- versionName "1.5.44.231117"
- multiDexEnabled true
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- ndk {
- abiFilters 'armeabi-v7a'
- }
- }
- lintOptions {
- checkReleaseBuilds false
- abortOnError false
- }
- dexOptions {
- javaMaxHeapSize "4g"
- }
- signingConfigs {
- config1 {
- keyAlias 'telpo'
- keyPassword '123456'
- storeFile file("sign.jks")
- storePassword '123456'
- }
- }
- buildTypes {
- release {
- debuggable true
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- signingConfig signingConfigs.config1
- }
- debug{
- debuggable true
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- signingConfig signingConfigs.config1
- }
- }
- repositories {
- flatDir {
- dirs 'libs'
- }
- }
- sourceSets {
- main {
- jniLibs.srcDirs = ['libs']
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- implementation fileTree(dir: "libs", include: ["*.jar", "*.aar"])
- implementation 'androidx.appcompat:appcompat:1.3.0-alpha02'
- implementation 'com.google.android.material:material:1.1.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- implementation files('libs\\PosUtil.jar')
- implementation files('libs\\telpo_api.jar')
- implementation files('libs\\PosUtil.jar')
- testImplementation 'junit:junit:4.+'
- androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
- implementation 'com.alibaba:fastjson:1.1.55.android'
- implementation project(':SeriaApp')
- implementation project(':qrCode')
-
- implementation 'com.squareup.okhttp3:logging-interceptor:3.11.0'
-
- implementation 'com.facebook.fresco:fresco:2.3.0'
- implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
- implementation 'com.squareup.retrofit2:adapter-rxjava2:2.4.0'
- implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
-
- implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
- implementation 'io.reactivex:rxandroid:1.2.1'
- implementation 'io.reactivex:rxjava:1.2.1'
-
- implementation 'com.squareup.retrofit2:retrofit:2.3.0'
- implementation 'com.squareup.retrofit2:adapter-rxjava:2.0.2'
- implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
-
- implementation 'io.reactivex:rxandroid:1.2.1'
- implementation 'io.reactivex:rxjava:1.3.0'
- implementation 'com.hwangjr.rxbus:rxbus:1.0.6'
-
- implementation 'org.greenrobot:eventbus:3.1.1'
- implementation 'com.android.support:multidex:1.0.3'
-
- implementation 'com.github.felHR85:UsbSerial:4.5.2'
- implementation 'com.alibaba:fastjson:1.1.55.android'
- implementation 'com.github.bumptech.glide:glide:4.12.0'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
-
- implementation 'com.github.licheedev:Android-SerialPort-API:2.0.0'
-
- implementation 'com.aill:AndroidSerialPort:1.0.8'
-
- implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.1'
- }
|