2020-12-29 17:15:24 +00:00
|
|
|
package rs.tts
|
|
|
|
|
|
|
|
import android.app.NativeActivity
|
|
|
|
|
2020-12-30 15:23:13 +00:00
|
|
|
class MainActivity : NativeActivity() {
|
|
|
|
companion object {
|
|
|
|
init {
|
|
|
|
System.loadLibrary("hello_world")
|
2020-12-29 20:10:39 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-29 17:15:24 +00:00
|
|
|
}
|