TribufuJava/library/src/main/kotlin/com/tribufu/sdk/TribuFu.kt
2021-08-21 09:22:27 -03:00

13 lines
334 B
Kotlin

// 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 getVersion(): String
}