I wanted to check the network connection. So, I used ConnectivityManager.activateNetworkInfo.isConnected
unfortunately, that's deprecated in API 29.
private fun isOnline(): Boolean {
val connectivityManager = appContext.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
val networkInfo = connectivityManager.activeNetworkInfo
return networkInfo != null && networkInfo.isConnected
}
and you can see depreciation message here
It's deprecated base on Google Document
So, If you want to find the Network Connection status, you can use this code.
kotlin :
Java :
you can see all NetworkCapability here.