Create Kotlin Library

This commit is contained in:
GuilhermeWerner 2021-04-17 09:23:38 -03:00
parent 6b651b2c48
commit c2c0e18986
11 changed files with 332 additions and 0 deletions

View file

@ -0,0 +1,18 @@
// Copyright (c) TribuFu. All Rights Reserved
package tribufu
class TribuFu {
/**
* A native method that is implemented by the 'TribuFu' native library, which is packaged with
* this library.
*/
// external fun Hello(): Int
companion object {
// Used to load the 'TribuFu' library on application startup.
init {
//System.loadLibrary("TribuFu")
}
}
}

View file

View file

View file