mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Added new Android Sense Agent
This commit is contained in:
parent
862a14c2b5
commit
bad0331dc7
@ -75,8 +75,8 @@ public class NetworkDataReader extends AsyncTask<Void, Void, Long> {
|
||||
*/
|
||||
private final Runnable mRunnable = new Runnable() {
|
||||
public void run() {
|
||||
long rxBytes = TrafficStats.getTotalRxBytes()- mStartRX;
|
||||
long txBytes = TrafficStats.getTotalTxBytes()- mStartTX;
|
||||
long rxBytes = TrafficStats.getTotalRxBytes() - mStartRX;
|
||||
long txBytes = TrafficStats.getTotalTxBytes() - mStartTX;
|
||||
Log.i("Usage: ", String.valueOf(rxBytes) + " " + String.valueOf(txBytes) + " " + System.currentTimeMillis());
|
||||
networkData.setType(connectionType);
|
||||
networkData.setTimeStamp(new Date().getTime());
|
||||
@ -94,3 +94,4 @@ public class NetworkDataReader extends AsyncTask<Void, Void, Long> {
|
||||
NetworkInfo networkInfo = manager.getNetworkInfo(type);
|
||||
return networkInfo.isConnected();
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user