srctree

Robin Linden parent 2ee50279 99a8892d
Suppress the AudioTrack deprecation

There doesn't appear to be an alternative on lower SDK versions.

inlinesplit
domain/src/main/kotlin/av/AudioPlayer.kt added: 2, removed: 1, total 1
@@ -20,6 +20,7 @@ class AudioPlayer(sampleRate: Int, channels: Int) {
AudioTrack.getMinBufferSize(sampleRate, intToChannel(channels), AudioFormat.ENCODING_PCM_16BIT)
private val audioTrack = if (Build.VERSION.SDK_INT < 23) {
// TODO(robinlinden): Verify that this works on old devices.
@Suppress("DEPRECATION") // I can't find a non-deprecated alternative for lower SDK versions.
AudioTrack(
AudioManager.STREAM_VOICE_CALL,
sampleRate,