Migrate Library to Kotlin

This commit is contained in:
GuilhermeWerner 2021-06-12 11:25:00 -03:00
parent 8a3eb4809e
commit 85ca2b7701
12 changed files with 81 additions and 79 deletions

View file

@ -0,0 +1,13 @@
// Copyright (c) TribuFu. All Rights Reserved
package com.tribufu.sdk
class TribuFu {
// Used to load the 'TribuFu' library on application startup.
init {
System.loadLibrary("TribuFu_Jvm")
}
/** A native method that is implemented by the 'TribuFu' native library. */
external fun Hello(input: String ): String
}