plugins { id 'com.android.application' } android { compileSdkVersion 35 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } defaultConfig { minSdkVersion 17 targetSdkVersion 35 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' // later versions have minsdk 21 implementation 'com.google.android.material:material:1.11.0' // later versions have minsdk 19 }