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.8.0' }