Skip to content

Instantly share code, notes, and snippets.

@ekoo
Created May 24, 2020 03:08
Show Gist options
  • Save ekoo/6bc07bf54f20b983e313c476b9b57350 to your computer and use it in GitHub Desktop.
Save ekoo/6bc07bf54f20b983e313c476b9b57350 to your computer and use it in GitHub Desktop.
lifecycleScope.launch {
NetworkInfo().checkConnection(this@MainActivity).collect { connected ->
if (connected){
//make some magic
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment