Skip to content

Instantly share code, notes, and snippets.

@ayushmaniac
Created August 15, 2020 06:43
Show Gist options
  • Save ayushmaniac/880da1ba38955fc306f3e6cf0c175ba0 to your computer and use it in GitHub Desktop.
Save ayushmaniac/880da1ba38955fc306f3e6cf0c175ba0 to your computer and use it in GitHub Desktop.
fun checkInternetConnection(context : Context) : Boolean {
val cm = context.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
var activeNetworkInfo: NetworkInfo? = null
activeNetworkInfo = cm.activeNetworkInfo
return activeNetworkInfo != null && activeNetworkInfo.isConnectedOrConnecting
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment