-
-
Save skydoves/abff98159e6f280735cc10f1013e4480 to your computer and use it in GitHub Desktop.
actual_log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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