(Context context, Intent intent)
| 381 | |
| 382 | private BroadcastReceiver connectionChangedReceiver = new BroadcastReceiver() { |
| 383 | @Override |
| 384 | public void onReceive(Context context, Intent intent) { |
| 385 | Log.i("Received " + intent + |
| 386 | " " + TextUtils.join(" ", Log.getExtras(intent.getExtras()))); |
| 387 | checkConnectivity(); |
| 388 | } |
| 389 | }; |
| 390 | |
| 391 | private void checkConnectivity() { |
nothing calls this directly
no test coverage detected