2017-01-29 16:52:43 +08:00
|
|
|
package com.topjohnwu.magisk.receivers;
|
|
|
|
|
2017-02-07 06:02:06 +08:00
|
|
|
import android.app.IntentService;
|
2017-01-29 16:52:43 +08:00
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
2017-02-01 23:54:32 +08:00
|
|
|
import android.widget.Toast;
|
2017-01-29 16:52:43 +08:00
|
|
|
|
2017-02-07 02:01:32 +08:00
|
|
|
import com.topjohnwu.magisk.MagiskManager;
|
2017-02-01 23:54:32 +08:00
|
|
|
import com.topjohnwu.magisk.R;
|
|
|
|
import com.topjohnwu.magisk.utils.Async;
|
2017-02-07 06:02:06 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Shell;
|
2017-02-07 07:32:40 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Utils;
|
|
|
|
|
|
|
|
import java.util.List;
|
2017-01-29 16:52:43 +08:00
|
|
|
|
|
|
|
public class BootReceiver extends BroadcastReceiver {
|
2017-02-05 22:02:14 +08:00
|
|
|
|
2017-01-29 16:52:43 +08:00
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
2017-02-07 06:02:06 +08:00
|
|
|
context.startService(new Intent(context, BootupIntentService.class));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class BootupIntentService extends IntentService {
|
|
|
|
|
|
|
|
public BootupIntentService() {
|
|
|
|
super("BootupIntentService");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onHandleIntent(Intent intent) {
|
2017-02-12 05:02:18 +08:00
|
|
|
MagiskManager magiskManager = Utils.getMagiskManager(this);
|
2017-02-07 06:02:06 +08:00
|
|
|
magiskManager.initSuAccess();
|
|
|
|
magiskManager.updateMagiskInfo();
|
2017-02-07 07:32:40 +08:00
|
|
|
List<String> ret = Shell.sh("getprop persist.magisk.hide");
|
|
|
|
boolean started = Utils.isValidShellResponse(ret) && Integer.parseInt(ret.get(0)) != 0;
|
2017-02-07 06:02:06 +08:00
|
|
|
if (magiskManager.prefs.getBoolean("magiskhide", false) &&
|
2017-02-07 07:32:40 +08:00
|
|
|
!magiskManager.disabled && !started && magiskManager.magiskVersion > 11) {
|
2017-02-07 06:02:06 +08:00
|
|
|
magiskManager.toast(R.string.start_magiskhide, Toast.LENGTH_LONG);
|
|
|
|
Shell.su(true, Async.MAGISK_HIDE_PATH + "enable",
|
2017-02-07 07:32:40 +08:00
|
|
|
"setprop persist.magisk.hide 1");
|
2017-02-07 06:02:06 +08:00
|
|
|
}
|
2017-02-05 22:02:14 +08:00
|
|
|
}
|
2017-01-29 16:52:43 +08:00
|
|
|
}
|
|
|
|
}
|