Update TribuFu.kt

This commit is contained in:
GuilhermeWerner 2021-04-26 20:26:46 -03:00
parent e5858aeb53
commit f79ef3675f

View file

@ -4,15 +4,12 @@ package tribufu
class TribuFu {
/**
* A native method that is implemented by the 'TribuFu' native library, which is packaged with
* this library.
* A native method that is implemented by the 'TribuFu' native library.
*/
// external fun Hello(): Int
companion object {
// Used to load the 'TribuFu' library on application startup.
init {
//System.loadLibrary("TribuFu")
}
// Used to load the 'TribuFu' library on application startup.
fun LoadLibrary() {
System.loadLibrary("TribuFu")
}
}