tor-android/src/org/torproject/android/OnBootReceiver.java

40 lines
950 B
Java
Raw Normal View History

package org.torproject.android;
import org.torproject.android.service.TorService;
import org.torproject.android.service.TorServiceUtils;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
public class OnBootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction() != null
2014-07-17 17:42:59 +00:00
&& Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction()))
{
SharedPreferences prefs = TorServiceUtils.getSharedPrefs(context.getApplicationContext());
boolean startOnBoot = prefs.getBoolean("pref_start_boot",false);
if (startOnBoot)
{
2014-07-17 17:42:59 +00:00
Intent torService = new Intent(context.getApplicationContext(), TorService.class);
torService.setAction(Intent.ACTION_BOOT_COMPLETED);
context.getApplicationContext().startService(torService);
}
}
}
}