twonly-app/android/app/src/main/kotlin/io/crates/keyring/Keyring.kt
2026-05-09 14:58:59 +02:00

14 lines
382 B
Kotlin

package io.crates.keyring
import android.content.Context
class Keyring {
companion object {
init {
// Replace with the name of your compiled Rust library
System.loadLibrary("rust_lib_twonly")
}
// The underlying Rust crate provides the implementation for this
external fun initializeNdkContext(context: Context)
}
}