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