1
0
mirror of https://github.com/mik3y/usb-serial-for-android synced 2025-06-06 15:36:46 +00:00
2023-07-04 20:52:08 +02:00

34 lines
724 B
Groovy

plugins {
id 'com.android.application'
}
android {
compileSdkVersion 33
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
minSdkVersion 17
targetSdkVersion 33
vectorDrawables.useSupportLibrary = true
missingDimensionStrategy 'device', 'anyDevice'
}
buildTypes {
release {
minifyEnabled true
}
}
namespace 'com.hoho.android.usbserial.examples'
}
dependencies {
implementation project(':usbSerialForAndroid')
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
}