SagiLow
SagiLow

Reputation: 6029

Checking internet connectivity in Android without ACCESS_NETWORK_STATE permission

I would like to check the internet connectivity but avoid adding ACCESS_NETWORK_STATE permission.
The application does ask for INTERNET permission.

Upvotes: 0

Views: 198

Answers (1)

Gabe Sechan
Gabe Sechan

Reputation: 93569

The best way is to request that permission. Otherwise you can try pinging a known IP. It won't be 100% accurate though (if for some reason that IP is down or unreachable, it won't work).

Upvotes: 1

Related Questions