mirror of
https://github.com/RfidResearchGroup/RFIDtools.git
synced 2026-05-12 11:19:59 -07:00
32 lines
717 B
Groovy
32 lines
717 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
|
|
defaultConfig {
|
|
minSdkVersion 19
|
|
targetSdkVersion 33
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'com.github.felHR85:UsbSerial:6.1.0'
|
|
|
|
implementation project(path: ':libmfkey')
|
|
implementation project(path: ':libtag')
|
|
|
|
implementation project(path: ':libutils')
|
|
implementation project(path: ':libcom')
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
}
|