DoubleTapPlayerView
DoubleTapPlayerView copied to clipboard
JVM Default issue
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
I also had the same problem.
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'] }