2016-09-24 11:54:12 -05:00
|
|
|
package com.topjohnwu.magisk;
|
|
|
|
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.os.AsyncTask;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.preference.PreferenceManager;
|
|
|
|
import android.support.v7.app.AppCompatActivity;
|
|
|
|
|
2016-10-22 11:05:34 -05:00
|
|
|
import com.topjohnwu.magisk.services.MonitorService;
|
2016-09-24 11:54:12 -05:00
|
|
|
import com.topjohnwu.magisk.utils.Async;
|
|
|
|
import com.topjohnwu.magisk.utils.Logger;
|
|
|
|
import com.topjohnwu.magisk.utils.Utils;
|
|
|
|
|
|
|
|
public class SplashActivity extends AppCompatActivity {
|
2016-10-01 05:21:24 +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-10-01 05:21:24 +08:00
|
|
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplication());
|
|
|
|
if (prefs.getString("theme","").equals("Dark")) {
|
2016-09-25 00:16:28 -05:00
|
|
|
setTheme(R.style.AppTheme_dh);
|
|
|
|
}
|
2016-09-24 11:54:12 -05:00
|
|
|
|
2016-10-01 05:21:24 +08:00
|
|
|
Logger.devLog = prefs.getBoolean("developer_logging", false);
|
|
|
|
Logger.logShell = prefs.getBoolean("shell_logging", false);
|
2016-09-30 11:35:46 +08:00
|
|
|
|
2016-10-22 11:05:34 -05:00
|
|
|
// Set up default preferences,make sure we add "extra" blacklist entries.
|
|
|
|
if (!defaultPrefs.contains("auto_blacklist")) {
|
|
|
|
Logger.dev("SplashActivity: Setting default preferences for application");
|
|
|
|
SharedPreferences.Editor editor = defaultPrefs.edit();
|
|
|
|
Set<String> set = new HashSet<>();
|
|
|
|
set.add("com.google.android.apps.walletnfcrel");
|
|
|
|
set.add("com.google.android.gms");
|
|
|
|
set.add("com.google.commerce.tapandpay");
|
|
|
|
editor.putStringSet("auto_blacklist", set);
|
|
|
|
editor.putBoolean("autoRootEnable", false);
|
|
|
|
editor.putBoolean("root", Utils.rootEnabled());
|
|
|
|
editor.apply();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up toggle states based on preferences, start services, disable root if set
|
|
|
|
if (Utils.autoToggleEnabled(getApplicationContext())) {
|
|
|
|
if (!Utils.hasServicePermission(getApplicationContext())) {
|
|
|
|
Utils.toggleAutoRoot(false, getApplicationContext());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Utils.autoToggleEnabled(getApplicationContext())) {
|
|
|
|
if (!Utils.isMyServiceRunning(MonitorService.class, getApplicationContext())) {
|
|
|
|
Intent myIntent = new Intent(getApplication(), MonitorService.class);
|
|
|
|
getApplication().startService(myIntent);
|
|
|
|
}
|
|
|
|
} else if (defaultPrefs.getBoolean("keep_root_off", false)) {
|
|
|
|
Utils.toggleRoot(false, getApplication());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up quick settings tile
|
|
|
|
Utils.setupQuickSettingsTile(getApplicationContext());
|
|
|
|
|
2016-09-24 11:54:12 -05:00
|
|
|
// Initialize
|
2016-10-01 05:21:24 +08:00
|
|
|
prefs.edit()
|
2016-09-27 22:57:20 +08:00
|
|
|
.putBoolean("module_done", false)
|
|
|
|
.putBoolean("repo_done", false)
|
2016-09-28 18:05:55 +08:00
|
|
|
.putBoolean("update_check_done", false)
|
2016-09-27 22:57:20 +08:00
|
|
|
.apply();
|
2016-09-28 18:05:55 +08:00
|
|
|
|
2016-10-01 05:21:24 +08:00
|
|
|
new Async.CheckUpdates(prefs).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
|
|
|
|
new Async.constructEnv(getApplicationInfo()).executeOnExecutor(AsyncTask.SERIAL_EXECUTOR);
|
|
|
|
|
|
|
|
new Async.LoadModules(prefs) {
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Void v) {
|
|
|
|
super.onPostExecute(v);
|
|
|
|
new Async.LoadRepos(getApplicationContext()).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
|
|
|
|
// Start main activity
|
|
|
|
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
}.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR);
|
2016-09-24 13:46:42 -05:00
|
|
|
|
2016-09-24 11:54:12 -05:00
|
|
|
}
|
|
|
|
}
|