123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- plugins {
- id 'com.android.application'
- }
- android {
- compileSdk 31
- defaultConfig {
- applicationId "com.taiyi.usbmaidemo"
- minSdk 21
- targetSdk 31
- versionCode 1
- versionName "1.0"
- 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
- }
- buildFeatures {
- viewBinding true
- }
- }
- dependencies {
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'com.google.android.material:material:1.3.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
- implementation 'androidx.navigation:navigation-fragment:2.3.5'
- implementation 'androidx.navigation:navigation-ui:2.3.5'
- testImplementation 'junit:junit:4.+'
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
- // implementation project(path: ':ble')
- implementation files('libs/ble-release.aar')
- implementation 'com.umeng.umsdk:common:9.4.4' //(必选)
- implementation 'com.umeng.umsdk:asms:1.4.1' // asms包依赖(必选)
- implementation 'com.umeng.umsdk:apm:1.5.2' // U-APM包依赖(必选)
- implementation 'com.android.volley:volley:1.2.1'
- implementation 'com.opencsv:opencsv:5.6'
- implementation 'org.greenrobot:eventbus:3.1.1'
- implementation 'com.aliyun.dpa:oss-android-sdk:2.9.5'
- implementation 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
- implementation 'io.reactivex.rxjava2:rxjava:2.1.7'
- implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
- implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.41'
- }
|