mirror of https://github.com/M66B/NetGuard.git
Simplification
This commit is contained in:
parent
2a60b69a3f
commit
2861b11661
|
@ -38,6 +38,7 @@ import android.graphics.BitmapFactory;
|
|||
import android.net.ConnectivityManager;
|
||||
import android.net.LinkProperties;
|
||||
import android.net.Network;
|
||||
import android.net.NetworkCapabilities;
|
||||
import android.net.NetworkInfo;
|
||||
import android.net.wifi.WifiManager;
|
||||
import android.os.Build;
|
||||
|
@ -165,16 +166,6 @@ public class Util {
|
|||
if (ni != null && ni.isConnected())
|
||||
return true;
|
||||
|
||||
Network[] networks = cm.getAllNetworks();
|
||||
if (networks == null)
|
||||
return false;
|
||||
|
||||
for (Network network : networks) {
|
||||
ni = cm.getNetworkInfo(network);
|
||||
if (ni != null && ni.getType() != ConnectivityManager.TYPE_VPN && ni.isConnected())
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue