Hi can anyone help me show network error to user w...
# android
h
Hi can anyone help me show network error to user when wifi is connected but no internet access like youtube?
t
attemp HTTP GET on this URL
Copy code
const val GOOGLE_CONNECTIVITY_CHECK_URL = "<https://connectivitycheck.gstatic.com/generate_204>"
and check for
Copy code
/**
 * HTTP Status-Code 204: No Content.
 */
public static final int HTTP_NO_CONTENT = 204;
д