1

Any ideas why my app keeps pinging this url: http://clients3.google.com/generate_204 ?

I don't do anything in the app, just keep it open and it keeps pinging that link every second or so. I doesn't matter in what screen I'm in, it keeps doing it.

Any ideas on where this comes from, why and how to stop it?

enter image description here

enter image description here

enter image description here

AndreiBogdan
  • 10,858
  • 13
  • 58
  • 106

1 Answers1

3

It generally means you are using some library that is checking the Internet connectivity and this URL is the best option to ping as it should work 24/7 without maintenance pause. It doesn't have to be only Google libraries. For example here React Native NetInfo library, the reachabilityUrl URL here: https://github.com/react-native-netinfo/react-native-netinfo/blob/2f0c8b9e5c09d23472e5d9f7d9bd1d8555698202/README.md#netinfoconfiguration

Babu
  • 4,324
  • 6
  • 41
  • 60