diff --git a/android/app/src/main/kotlin/com/edde746/plezy/mpv/MpvPlayerPlugin.kt b/android/app/src/main/kotlin/com/edde746/plezy/mpv/MpvPlayerPlugin.kt index 3fd96766..a92e7d3b 100644 --- a/android/app/src/main/kotlin/com/edde746/plezy/mpv/MpvPlayerPlugin.kt +++ b/android/app/src/main/kotlin/com/edde746/plezy/mpv/MpvPlayerPlugin.kt @@ -102,6 +102,7 @@ class MpvPlayerPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, "abandonAudioFocus" -> handleAbandonAudioFocus(result) "openContentFd" -> handleOpenContentFd(call, result) "isInitialized" -> result.success(playerCore?.isInitialized ?: false) + "setLogLevel" -> result.success(null) else -> result.notImplemented() } }