Skip to content

Instantly share code, notes, and snippets.

@aqua30
Created June 22, 2022 09:50
Show Gist options
  • Select an option

  • Save aqua30/dda8ddea119e6111a4daaaa6f6ac8593 to your computer and use it in GitHub Desktop.

Select an option

Save aqua30/dda8ddea119e6111a4daaaa6f6ac8593 to your computer and use it in GitHub Desktop.
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
Text(text = "Hello Saurabh!")
}
runBlocking { // CoroutineScope
Log.e("TAG","starting")
delay(1000) // 1 sec
Log.e("TAG","stopping")
}
Log.e("TAG","Printing normally on thread ${this.javaClass.name}")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment