loadLibrary

Before using the datalayer library this function must be executed.

It is recommended to load the library in a static way.

MainActivity.java:
static {
de.testo.datalayer.LibraryLoaderKt.loadLibrary();
}

Or, in MainActivity.kt:
companion object {
init {
de.testo.datalayer.loadLibrary()
}
}