Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c377f75d authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

Merge branch 'oreo_fileObserver' into issue_124_skipToCompleteScan

parents b181d7e1 805530d7
Loading
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -9,11 +9,13 @@ import android.util.Log;

import java.io.IOException;

import foundation.e.drive.services.InitializerService;

public class ConnectivityReceiver
        extends BroadcastReceiver {

    public static ConnectivityReceiverListener connectivityReceiverListener;

    final private String TAG = InitializerService.class.getSimpleName();
    public ConnectivityReceiver() {
        super();
    }
@@ -42,7 +44,7 @@ public class ConnectivityReceiver
                && activeNetwork.isConnectedOrConnecting();

        //if (connectivityReceiverListener != null) {
        Log.e("TAG", "ConnectivityReceiver onNetworkConnectionChanged...." + isConnected);
        Log.e(TAG, "ConnectivityReceiver onNetworkConnectionChanged...." + isConnected);
        //connectivityReceiverListener.onNetworkConnectionChanged(isConnected);
        //}
    }
+1 −1
Original line number Diff line number Diff line
@@ -347,7 +347,7 @@ public class InitializerService extends Service
    public void onNetworkConnectionChanged(boolean isConnected) {

        //just for testing code for now
        Log.e("TAG", "onNetworkConnectionChanged...." + isConnected);
        Log.e(TAG, "onNetworkConnectionChanged...." + isConnected);

    }
}
 No newline at end of file