mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-09 04:41:08 +00:00
13 lines
334 B
Kotlin
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
|
|
}
|