mirror of
https://github.com/ndarilek/tts-rs.git
synced 2024-11-22 07:09:38 +00:00
11 lines
202 B
Kotlin
11 lines
202 B
Kotlin
package rs.tts
|
|
|
|
import android.app.NativeActivity
|
|
|
|
class MainActivity : NativeActivity() {
|
|
companion object {
|
|
init {
|
|
System.loadLibrary("hello_world")
|
|
}
|
|
}
|
|
} |