|
|
@ -233,7 +233,7 @@ def get_network_strength(network_type): |
|
|
|
return network_strength |
|
|
|
return network_strength |
|
|
|
if network_type == NetworkType.wifi: |
|
|
|
if network_type == NetworkType.wifi: |
|
|
|
out = subprocess.check_output('dumpsys connectivity', shell=True).decode('ascii') |
|
|
|
out = subprocess.check_output('dumpsys connectivity', shell=True).decode('ascii') |
|
|
|
network_strength = NetworkStrength.none |
|
|
|
network_strength = NetworkStrength.unknown |
|
|
|
for line in out.split('\n'): |
|
|
|
for line in out.split('\n'): |
|
|
|
if "SignalStrength" in line: |
|
|
|
if "SignalStrength" in line: |
|
|
|
arr = line.split(' ') |
|
|
|
arr = line.split(' ') |
|
|
|