mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-09-23 14:54:07 +00:00
14 lines
382 B
Kotlin
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)
|
|
}
|
|
}
|