MotionToast
MotionToast copied to clipboard
Some functions are not available in Java
Some functions are not available in Java because @JvmStatic is not added above the function declarations.
If the class is object
class in Kotlin
object class KotlinObject {
fun method() {
}
}
You should use INSTANCE
in Java
KotlinObject.INSTANCE.method();