fixed OnBoot issue with unintended service starting
This commit is contained in:
parent
36a2348813
commit
697f5aa2f1
|
@ -5,6 +5,8 @@ import org.torproject.android.service.TorService;
|
|||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.SharedPreferences;
|
||||
import android.preference.PreferenceManager;
|
||||
|
||||
public class OnBootReceiver extends BroadcastReceiver {
|
||||
|
||||
|
@ -13,6 +15,12 @@ public class OnBootReceiver extends BroadcastReceiver {
|
|||
|
||||
if (intent.getAction() != null
|
||||
&& intent.getAction().equals("android.intent.action.BOOT_COMPLETED"))
|
||||
{
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
|
||||
boolean startOnBoot = prefs.getBoolean("pref_start_boot",false);
|
||||
|
||||
if (startOnBoot)
|
||||
{
|
||||
//Phase 1: Launch a service
|
||||
Intent service = new Intent();
|
||||
|
@ -20,6 +28,7 @@ public class OnBootReceiver extends BroadcastReceiver {
|
|||
service.setClass(context, TorService.class);
|
||||
context.startService(service);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue