usb-serial-for-android/usbSerialExamples/build.gradle

34 wiersze
724 B
Groovy
Czysty Zwykły widok Historia

2021-09-21 18:38:32 +00:00
plugins {
id 'com.android.application'
}
2014-04-01 06:40:49 +00:00
android {
2023-03-11 10:11:51 +00:00
compileSdkVersion 33
2014-04-01 06:40:49 +00:00
2020-03-23 19:11:39 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2014-04-01 06:40:49 +00:00
defaultConfig {
minSdkVersion 17
2023-03-11 10:11:51 +00:00
targetSdkVersion 33
vectorDrawables.useSupportLibrary = true
2014-04-01 06:40:49 +00:00
2019-10-20 20:12:56 +00:00
missingDimensionStrategy 'device', 'anyDevice'
2014-04-01 06:40:49 +00:00
}
buildTypes {
release {
minifyEnabled true
2014-04-01 06:40:49 +00:00
}
}
2023-03-11 08:35:03 +00:00
namespace 'com.hoho.android.usbserial.examples'
2014-04-01 06:40:49 +00:00
}
dependencies {
implementation project(':usbSerialForAndroid')
2023-03-11 10:11:51 +00:00
implementation 'androidx.appcompat:appcompat:1.6.1'
2023-07-04 18:46:36 +00:00
implementation 'com.google.android.material:material:1.9.0'
2014-04-01 06:40:49 +00:00
}