123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- plugins {
- id 'com.android.library'
- }
- android {
- compileSdk 31
- defaultConfig {
- minSdk 21
- targetSdk 31
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles "consumer-rules.pro"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- sourceSets {
- main {
- jniLibs.srcDirs = ['libs']
- }
- }
- }
- dependencies {
- implementation 'com.google.android.material:material:1.3.0'
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
- testImplementation 'junit:junit:4.+'
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- implementation 'com.github.felHR85:UsbSerial:6.1.0'
- api 'com.opencsv:opencsv:5.6'
- api 'com.aliyun.dpa:oss-android-sdk:2.9.21'
- api 'com.github.PhilJay:MPAndroidChart:v3.1.0'
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'com.android.volley:volley:1.2.1'
- api 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
- api 'io.reactivex.rxjava2:rxjava:2.1.7'
- api 'io.reactivex.rxjava2:rxandroid:2.0.1'
- api 'org.greenrobot:eventbus:3.3.1'
- api 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.41'
- implementation 'androidx.work:work-runtime-ktx:2.7.0'
- }
|