Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created October 29, 2024 04:55
Show Gist options
  • Save skydoves/abff98159e6f280735cc10f1013e4480 to your computer and use it in GitHub Desktop.
Save skydoves/abff98159e6f280735cc10f1013e4480 to your computer and use it in GitHub Desktop.
actual_log
// In Android module
actual fun log(message: String) {
Log.d("TAG", message)
}
// In iOS module
actual fun log(message: String) {
NSLog(message)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment