2016-09-24 11:54:12 -05:00
|
|
|
package com.topjohnwu.magisk;
|
|
|
|
|
2017-02-17 08:51:51 +08:00
|
|
|
import android.app.job.JobInfo;
|
|
|
|
import android.app.job.JobScheduler;
|
|
|
|
import android.content.ComponentName;
|
|
|
|
import android.content.Context;
|
2016-09-24 11:54:12 -05:00
|
|
|
import android.content.Intent;
|
|
|
|
import android.os.Bundle;
|
2017-05-23 16:51:23 +08:00
|
|
|
import android.text.TextUtils;
|
2016-09-24 11:54:12 -05:00
|
|
|
|
2017-02-12 19:49:46 +08:00
|
|
|
import com.topjohnwu.magisk.asyncs.LoadModules;
|
2017-07-21 02:46:02 +08:00
|
|
|
import com.topjohnwu.magisk.asyncs.UpdateRepos;
|
2017-02-07 02:01:32 +08:00
|
|
|
import com.topjohnwu.magisk.components.Activity;
|
2017-02-17 08:51:51 +08:00
|
|
|
import com.topjohnwu.magisk.services.UpdateCheckService;
|
2017-05-23 16:51:23 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Utils;
|
2017-02-07 07:32:40 +08:00
|
|
|
|
2017-02-17 08:51:51 +08:00
|
|
|
public class SplashActivity extends Activity{
|
|
|
|
|
|
|
|
private static final int UPDATE_SERVICE_ID = 1;
|
2016-10-31 11:13:48 +08:00
|
|
|
|
2016-09-24 11:54:12 -05:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
2016-09-25 21:31:38 +08:00
|
|
|
|
2016-09-26 13:16:11 -05:00
|
|
|
super.onCreate(savedInstanceState);
|
2016-09-24 11:54:12 -05:00
|
|
|
|
2017-07-20 01:44:32 +08:00
|
|
|
MagiskManager magiskManager = getApplicationContext();
|
|
|
|
|
2017-07-18 03:34:06 +08:00
|
|
|
// Init the info and configs and root sh
|
2017-07-20 01:44:32 +08:00
|
|
|
magiskManager.init();
|
|
|
|
|
|
|
|
// Get possible additional info from intent
|
|
|
|
magiskManager.remoteMagiskVersionString = getIntent().getStringExtra(MagiskManager.INTENT_VERSION);
|
|
|
|
magiskManager.magiskLink = getIntent().getStringExtra(MagiskManager.INTENT_LINK);
|
2017-02-07 07:32:40 +08:00
|
|
|
|
2017-07-20 02:54:34 +08:00
|
|
|
LoadModules loadModuleTask = new LoadModules(this);
|
2017-05-23 16:51:23 +08:00
|
|
|
|
|
|
|
if (Utils.checkNetworkStatus(this)) {
|
2017-06-07 02:19:23 +08:00
|
|
|
// Initialize the update check service, notify every 8 hours
|
2017-05-23 16:51:23 +08:00
|
|
|
if (!TextUtils.equals("install", getIntent().getStringExtra(MagiskManager.INTENT_SECTION))) {
|
2017-06-06 03:06:23 +08:00
|
|
|
ComponentName service = new ComponentName(this, UpdateCheckService.class);
|
2017-05-23 16:51:23 +08:00
|
|
|
JobInfo jobInfo = new JobInfo.Builder(UPDATE_SERVICE_ID, service)
|
|
|
|
.setRequiredNetworkType(JobInfo.NETWORK_TYPE_ANY)
|
|
|
|
.setPersisted(true)
|
2017-06-07 02:19:23 +08:00
|
|
|
.setPeriodic(8 * 60 * 60 * 1000)
|
2017-05-23 16:51:23 +08:00
|
|
|
.build();
|
2017-07-22 17:39:34 +08:00
|
|
|
((JobScheduler) getSystemService(Context.JOB_SCHEDULER_SERVICE)).schedule(jobInfo);
|
2017-02-17 08:51:51 +08:00
|
|
|
}
|
2017-07-22 17:39:34 +08:00
|
|
|
loadModuleTask.setCallBack(() -> new UpdateRepos(getApplication()).exec());
|
2017-05-23 16:51:23 +08:00
|
|
|
}
|
|
|
|
|
2017-07-20 02:54:34 +08:00
|
|
|
loadModuleTask.exec();
|
|
|
|
|
2017-06-06 03:06:23 +08:00
|
|
|
Intent intent = new Intent(this, MainActivity.class);
|
2017-05-23 16:51:23 +08:00
|
|
|
String section = getIntent().getStringExtra(MagiskManager.INTENT_SECTION);
|
|
|
|
if (section != null) {
|
|
|
|
intent.putExtra(MagiskManager.INTENT_SECTION, section);
|
|
|
|
}
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
2016-09-24 11:54:12 -05:00
|
|
|
}
|
|
|
|
}
|