If you’re referring to creating an interface and u...
# announcements
d
If you’re referring to creating an interface and using it as a lambda, that’s not possible with interfaces defined in Kotlin (yet). You’ll want to use lambdas directly in Kotlin ie.
() -> {...}
or define your interfaces in Java.
r
fair enough, I am waiting for a future version then