This repository has been archived on 2025-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
enginex-mr_series-sherpa-onnx/kotlin-api-examples/faked-log.kt
2024-01-27 13:01:54 +08:00

11 lines
134 B
Kotlin

package android.util
class Log {
companion object {
fun i(tag: String, msg: String) {
println("$tag, $msg")
}
}
}