mirror of https://github.com/M66B/FairEmail.git
Move boot to app
This commit is contained in:
parent
4f443358a3
commit
6629ad4273
|
@ -136,6 +136,10 @@ public class ApplicationEx extends Application implements SharedPreferences.OnSh
|
||||||
|
|
||||||
DisconnectBlacklist.init(this);
|
DisconnectBlacklist.init(this);
|
||||||
|
|
||||||
|
ServiceSynchronize.boot(this);
|
||||||
|
ServiceSend.boot(this);
|
||||||
|
ServiceUI.boot(this);
|
||||||
|
|
||||||
boolean watchdog = prefs.getBoolean("watchdog", true);
|
boolean watchdog = prefs.getBoolean("watchdog", true);
|
||||||
boolean enabled = prefs.getBoolean("enabled", true);
|
boolean enabled = prefs.getBoolean("enabled", true);
|
||||||
if (watchdog && enabled)
|
if (watchdog && enabled)
|
||||||
|
|
|
@ -26,16 +26,12 @@ import android.content.Intent;
|
||||||
public class ReceiverAutoStart extends BroadcastReceiver {
|
public class ReceiverAutoStart extends BroadcastReceiver {
|
||||||
@Override
|
@Override
|
||||||
public void onReceive(final Context context, Intent intent) {
|
public void onReceive(final Context context, Intent intent) {
|
||||||
if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction()) ||
|
Log.i("Received " + intent);
|
||||||
Intent.ACTION_MY_PACKAGE_REPLACED.equals(intent.getAction())) {
|
|
||||||
Log.i("Received " + intent);
|
|
||||||
|
|
||||||
if (Intent.ACTION_MY_PACKAGE_REPLACED.equals(intent.getAction()))
|
if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction()))
|
||||||
ApplicationEx.upgrade(context);
|
; // handled by Application
|
||||||
|
|
||||||
ServiceSynchronize.boot(context);
|
if (Intent.ACTION_MY_PACKAGE_REPLACED.equals(intent.getAction()))
|
||||||
ServiceSend.boot(context);
|
ApplicationEx.upgrade(context);
|
||||||
ServiceUI.boot(context);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue