Sign in
dart
/
native
/
HEAD
/
.
/
pkgs
/
jnigen
/
example
/
kotlin_plugin
/
android
/
src
/
main
/
kotlin
/
Example.kt
blob: 531f899b45c5fc42bf72b64d63436dc0cc42624f [
file
] [
log
] [
blame
]
import
androidx
.
annotation
.
Keep
import
kotlinx
.
coroutines
.*
@Keep
class
Example
{
public
suspend fun thinkBeforeAnswering
():
String
{
delay
(
1000L
)
return
"42"
}
}