mirror of
https://github.com/M66B/NetGuard.git
synced 2025-02-22 14:21:01 +00:00
parent
b3dd446dd3
commit
d786249594
1 changed files with 10 additions and 1 deletions
|
@ -38,7 +38,6 @@ 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;
|
||||
|
@ -166,6 +165,16 @@ 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 a new issue