You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For "jni" methods - use long method name format. This will also make it more error-proof, protecting against inconsistent types in java and rust declarations, now it's possible to write something like
pubextern"jni"fngetBool(self,v:bool) -> bool{
v
}
publicnativeBooleangetBool(Booleanx);
and it won't fail on System.loadLibrary call
For "java" methods - allow to override corresponding java method name to be able to write something like
"jni"
methods - use long method name format. This will also make it more error-proof, protecting against inconsistent types in java and rust declarations, now it's possible to write something likeand it won't fail on
System.loadLibrary
call"java"
methods - allow to override corresponding java method name to be able to write something likeThe text was updated successfully, but these errors were encountered: