DoubleTapPlayerView icon indicating copy to clipboard operation
DoubleTapPlayerView copied to clipboard

JVM Default issue

Open hussein-yassine opened this issue 3 years ago • 2 comments

I'm receiving the following error on the youtube_overlay.performListener

Inheritance from an interface with '@JvmDefault' members is only allowed with -Xjvm-default option

hussein-yassine avatar Nov 12 '21 13:11 hussein-yassine

I also had the same problem.

Untitled

cryinrain69 avatar Nov 12 '21 18:11 cryinrain69

Este problema se arregla por el compilador se debe agregar la siguiente linea de codigo en kotlinOptions freeCompilerArgs = ['-Xjvm-default=compatibility'] Quedando de la siguiente manera kotlinOptions { jvmTarget = '1.8' freeCompilerArgs = ['-Xjvm-default=compatibility'] }

GustavoZQ avatar Jan 01 '22 22:01 GustavoZQ