Start daemon service immediately app starts (even for first run)
This commit is contained in:
parent
541f582ac1
commit
0da47c409f
1 changed files with 3 additions and 7 deletions
|
@ -142,13 +142,9 @@ public class MainActivity extends Activity implements DefaultHardwareBackBtnHand
|
||||||
super.onResume();
|
super.onResume();
|
||||||
|
|
||||||
SharedPreferences sp = getSharedPreferences(SHARED_PREFERENCES_NAME, Context.MODE_PRIVATE);
|
SharedPreferences sp = getSharedPreferences(SHARED_PREFERENCES_NAME, Context.MODE_PRIVATE);
|
||||||
if (!sp.getBoolean("firstRun", true)) {
|
serviceRunning = isServiceRunning(LbrynetService.class);
|
||||||
// We're not showing the welcome page, so it's okay to start the daemon service
|
if (!serviceRunning) {
|
||||||
// because this is not the first run experience
|
ServiceHelper.start(this, "", LbrynetService.class, "lbrynetservice");
|
||||||
serviceRunning = isServiceRunning(LbrynetService.class);
|
|
||||||
if (!serviceRunning) {
|
|
||||||
ServiceHelper.start(this, "", LbrynetService.class, "lbrynetservice");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mReactInstanceManager != null) {
|
if (mReactInstanceManager != null) {
|
||||||
|
|
Loading…
Reference in a new issue