LibreTube/app/src/main/java/com/github/libretube/services/VideoOnlinePlayerService.kt

9 lines
257 B
Kotlin

package com.github.libretube.services
import androidx.annotation.OptIn
import androidx.media3.common.util.UnstableApi
@OptIn(UnstableApi::class)
class VideoOnlinePlayerService : OnlinePlayerService() {
override val isAudioOnlyPlayer: Boolean = false
}