plugins { id 'com.android.library' id 'com.kezong.fat-aar' } android { namespace 'com.taiyi.zhimai' compileSdk 31 defaultConfig { minSdk 21 targetSdk 31 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 } } dependencies { implementation 'androidx.appcompat:appcompat:1.4.1' implementation 'com.google.android.material:material:1.5.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.3' embed project(path: ':TYUsbSDK') api project(path: ':TYUsbSDK') // implementation project(path: ':TYUsbSDK') embed 'com.github.felHR85:UsbSerial:6.1.0' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' // api 'com.opencsv:opencsv:5.6' // api 'org.greenrobot:eventbus:3.1.1' // api 'com.aliyun.dpa:oss-android-sdk:2.9.5' // 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 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.41' } apply from: "../publish.gradle"