How can I get the ip
address when the android is in Active data network
mode? I searched about How can I get the ip address in android and I found the following answers:
WifiManager wm = (WifiManager) getSystemService(WIFI_SERVICE);
String ip = Formatter.formatIpAddress(wm.getConnectionInfo().getIpAddress());
When I run the code above in my device, I get the ip
address only when my device is in WIFI
mode. But when my device is in Active data network
mode and then I run the above code I see such thing: 0.0.0.0
. I want to get any ip
address in both situations.Thank you.