Kachi
Results
1
comments of
Kachi
> /** * Check if there is any connectivity to a Wifi network */ public static boolean isConnectedWifi(Context context){ NetworkInfo info = Connectivity.getNetworkInfo(context); return (info != null && info.isConnected() &&...