12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 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.taiyi.sdk.pulse:ble:1.1.0-alpha.01'
- implementation 'com.android.volley:volley:1.2.1'
- implementation 'com.opencsv:opencsv:5.6'
- implementation 'org.greenrobot:eventbus:3.3.1'
- implementation 'com.aliyun.dpa:oss-android-sdk:2.9.21'
- 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'
- }
|