1apply plugin: 'com.android.library' 2 3android { 4 defaultConfig { 5 minSdkVersion 21 6 targetSdkVersion 35 7 compileSdkVersion 35 8 } 9 buildTypes { 10 release { 11 minifyEnabled false 12 proguardFiles getDefaultProguardFile('proguard-android.txt') 13 } 14 } 15 compileOptions { 16 sourceCompatibility JavaVersion.VERSION_18 17 targetCompatibility JavaVersion.VERSION_18 18 } 19 namespace 'com.google.oboe.samples.audio_device' 20} 21 22dependencies { 23 implementation 'androidx.appcompat:appcompat:1.7.0' 24} 25