Update JNI Bindings

This commit is contained in:
GuilhermeWerner 2021-05-07 09:37:23 -03:00
parent 0d148a829f
commit e24715c22a
5 changed files with 12 additions and 42 deletions

View file

@ -1,15 +0,0 @@
// Copyright (c) TribuFu. All Rights Reserved
package tribufu;
public class TribuFu {
/**
* A native method that is implemented by the 'TribuFu' native library.
*/
public native String Hello(String input);
// Used to load the 'TribuFu' library on application startup.
public void LoadLibrary() {
System.loadLibrary("TribuFu");
}
}