2016-09-24 11:54:12 -05:00
|
|
|
package com.topjohnwu.magisk;
|
|
|
|
|
|
|
|
import android.content.Intent;
|
2018-10-28 00:54:56 -04:00
|
|
|
import android.content.pm.PackageManager;
|
2016-09-24 11:54:12 -05:00
|
|
|
import android.os.Bundle;
|
2018-10-28 00:54:56 -04:00
|
|
|
import android.text.TextUtils;
|
2016-09-24 11:54:12 -05:00
|
|
|
|
2017-11-06 04:47:24 +08:00
|
|
|
import com.topjohnwu.magisk.asyncs.CheckUpdates;
|
|
|
|
import com.topjohnwu.magisk.asyncs.UpdateRepos;
|
2018-08-01 17:57:11 +08:00
|
|
|
import com.topjohnwu.magisk.components.BaseActivity;
|
2018-09-16 00:08:13 -04:00
|
|
|
import com.topjohnwu.magisk.receivers.ShortcutReceiver;
|
2018-07-30 20:37:00 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Download;
|
2018-07-31 17:35:58 +08:00
|
|
|
import com.topjohnwu.magisk.utils.LocaleManager;
|
2018-12-02 15:15:42 -05:00
|
|
|
import com.topjohnwu.magisk.utils.Notifications;
|
2018-10-28 00:54:56 -04:00
|
|
|
import com.topjohnwu.magisk.utils.RootUtils;
|
2017-11-06 04:47:24 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Utils;
|
2018-01-21 06:07:24 +08:00
|
|
|
import com.topjohnwu.superuser.Shell;
|
2017-11-06 04:47:24 +08:00
|
|
|
|
2018-08-01 17:57:11 +08:00
|
|
|
public class SplashActivity extends BaseActivity {
|
2016-10-31 11:13:48 +08:00
|
|
|
|
2016-09-24 11:54:12 -05:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
2016-09-26 13:16:11 -05:00
|
|
|
super.onCreate(savedInstanceState);
|
2016-09-24 11:54:12 -05:00
|
|
|
|
2018-10-28 00:54:56 -04:00
|
|
|
String pkg = mm.mDB.getStrings(Const.Key.SU_MANAGER, null);
|
|
|
|
if (pkg != null && getPackageName().equals(Const.ORIG_PKG_NAME)) {
|
|
|
|
mm.mDB.setStrings(Const.Key.SU_MANAGER, null);
|
|
|
|
Shell.su("pm uninstall " + pkg).exec();
|
|
|
|
}
|
|
|
|
if (TextUtils.equals(pkg, getPackageName())) {
|
|
|
|
try {
|
|
|
|
// We are the manager, remove com.topjohnwu.magisk as it could be malware
|
|
|
|
getPackageManager().getApplicationInfo(Const.ORIG_PKG_NAME, 0);
|
|
|
|
RootUtils.uninstallPkg(Const.ORIG_PKG_NAME);
|
|
|
|
} catch (PackageManager.NameNotFoundException ignored) {}
|
|
|
|
}
|
|
|
|
|
2018-08-02 00:41:10 +08:00
|
|
|
// Magisk working as expected
|
|
|
|
if (Shell.rootAccess() && Data.magiskVersionCode > 0) {
|
|
|
|
// Update check service
|
|
|
|
Utils.setupUpdateCheck();
|
|
|
|
// Load modules
|
|
|
|
Utils.loadModules();
|
|
|
|
}
|
2017-11-06 04:47:24 +08:00
|
|
|
|
2018-07-31 17:41:54 +08:00
|
|
|
Data.importPrefs();
|
2017-12-20 12:14:46 +08:00
|
|
|
|
2017-11-06 04:47:24 +08:00
|
|
|
// Dynamic detect all locales
|
2018-08-01 14:16:44 +08:00
|
|
|
LocaleManager.loadAvailableLocales();
|
2017-11-06 04:47:24 +08:00
|
|
|
|
|
|
|
// Create notification channel on Android O
|
2018-12-02 15:15:42 -05:00
|
|
|
Notifications.setup(this);
|
2017-11-06 04:47:24 +08:00
|
|
|
|
2018-04-07 00:45:10 +08:00
|
|
|
// Setup shortcuts
|
2018-09-16 00:08:13 -04:00
|
|
|
sendBroadcast(new Intent(this, Data.classMap.get(ShortcutReceiver.class)));
|
2018-04-07 00:45:10 +08:00
|
|
|
|
2018-07-30 20:37:00 +08:00
|
|
|
if (Download.checkNetworkStatus(this)) {
|
2017-11-06 04:47:24 +08:00
|
|
|
// Fire update check
|
2018-08-02 00:41:10 +08:00
|
|
|
CheckUpdates.check();
|
|
|
|
// Repo update check
|
|
|
|
new UpdateRepos().exec();
|
2017-11-06 04:47:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write back default values
|
2018-07-31 17:41:54 +08:00
|
|
|
Data.writeConfig();
|
2017-11-06 04:47:24 +08:00
|
|
|
|
|
|
|
mm.hasInit = true;
|
2017-07-20 02:54:34 +08:00
|
|
|
|
2018-09-16 00:08:13 -04:00
|
|
|
Intent intent = new Intent(this, Data.classMap.get(MainActivity.class));
|
2017-11-06 05:36:20 +08:00
|
|
|
intent.putExtra(Const.Key.OPEN_SECTION, getIntent().getStringExtra(Const.Key.OPEN_SECTION));
|
2018-08-01 17:57:11 +08:00
|
|
|
intent.putExtra(BaseActivity.INTENT_PERM, getIntent().getStringExtra(BaseActivity.INTENT_PERM));
|
2017-05-23 16:51:23 +08:00
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
2016-09-24 11:54:12 -05:00
|
|
|
}
|
|
|
|
}
|