2020-03-11 12:05:13 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
compileSdkVersion 29
|
2020-04-13 12:17:12 +08:00
|
|
|
buildToolsVersion "29.0.3"
|
2020-03-11 12:05:13 +08:00
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
minSdkVersion 19
|
|
|
|
|
targetSdkVersion 29
|
|
|
|
|
versionCode 1
|
2020-06-29 18:11:49 +08:00
|
|
|
versionName "1.1"
|
2020-03-11 12:05:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2020-04-06 14:28:40 +08:00
|
|
|
implementation 'com.github.felHR85:UsbSerial:6.1.0'
|
2020-04-13 12:17:12 +08:00
|
|
|
implementation 'androidx.annotation:annotation:1.1.0'
|
2020-05-27 15:37:27 +08:00
|
|
|
|
|
|
|
|
implementation 'com.github.xianglin1998:ComBridge:1.0.7'
|
|
|
|
|
// implementation project(path: ':iobridges')
|
2020-03-11 12:05:13 +08:00
|
|
|
}
|