playback: fix di error

This commit is contained in:
Alexander Capehart 2024-09-24 18:48:16 -06:00
parent a7aae6a11e
commit 9ef3c41bf8

View file

@ -72,9 +72,11 @@ interface PlayerKernel {
}
}
class PlayerKernelFactoryImpl(
@Inject private val mediaSourceFactory: MediaSource.Factory,
@Inject private val replayGainProcessor: ReplayGainAudioProcessor
class PlayerKernelFactoryImpl
@Inject
constructor(
private val mediaSourceFactory: MediaSource.Factory,
private val replayGainProcessor: ReplayGainAudioProcessor
) : PlayerKernel.Factory {
override fun create(
context: Context,