plugins { alias(libs.plugins.android.library) } android { namespace = "com.meetrec.core.recording" compileSdk = 36 defaultConfig { minSdk = 29 } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } } dependencies { // WavWriter/WavReader/RollingWindow/resampler are pure Kotlin and unit // tested on the JVM; MeetingRecorder needs a device (AudioRecord). testImplementation(libs.junit) }