Ring Video Doorbell
Ring live not working on cellular
All of a sudden I can no longer view live mode on my phone when I am away from the WiFi in the house. It still works fine on my partners phone just not mine? Any ideas how to fix it?
912 •
0 •
3 •
23-09-2021 09:46:10
Responses (3)
- U
Please Vote for ‘Feature Request’ to get Rings attention to the issue: https://community.ring.com/t/fix-the-ring-mobile-app-to-properly-use-lte-4g-without-the-many-reported-issues/112034 Thanks.
•0
27-01-2022 09:01:34
•
- U
One can use the `WifiManager` to obtain the IP address: ``` Context context = requireContext().getApplicationContext(); WifiManager wm = (WifiManager) context.getSystemService(Context.WIFI_SERVICE); String ip = Formatter.formatIpAddress(wm.getConnectionInfo().getIpAddress()); ```
•0
20-03-2023 04:56:38
•
Didn't find an answer ?
Log in or create your Ring account to post a question and join in the on the conversation.
Community Resources
©2024 Ring LLC or its affiliates
Rodgers458
With permission `ACCESS_WIFI_STATE` declared in `AndroidManifest.xml` : ``` ``` One can use the `WifiManager` to obtain the IP address: ``` Context context = requireContext().getApplicationContext(); WifiManager wm = (WifiManager) context.getSystemService(Context.WIFI_SERVICE); String ip = Formatter.formatIpAddress(wm.getConnectionInfo().getIpAddress()); ``` This Works[.](https://www.prepaidgiftbalance.net/)
2
24-09-2021 01:51:03
•