Archives for: "July 2012, 03"
Ping won't work for external network in Android
The standard way to do Ping in Android is using isReachable(). Like this: CodeInetAddress address = InetAddress.getByName("192.168.1.1"));if(address.isReachable(100000)){// Success} But I tested this only working in local network and total… more »