Fix CI tests for Python and JNI. (#554)

This commit is contained in:
Fangjun Kuang
2024-01-27 13:01:54 +08:00
committed by GitHub
parent 7ae73e75ba
commit 44efff4e47
7 changed files with 40 additions and 20 deletions

View File

@@ -0,0 +1,10 @@
package android.util
class Log {
companion object {
fun i(tag: String, msg: String) {
println("$tag, $msg")
}
}
}