15 lines
359 B
Java
15 lines
359 B
Java
|
package com.topjohnwu.magisk.receivers;
|
||
|
|
||
|
import android.content.BroadcastReceiver;
|
||
|
import android.content.Context;
|
||
|
import android.content.Intent;
|
||
|
|
||
|
import com.topjohnwu.magisk.utils.Shell;
|
||
|
|
||
|
public class RebootReceiver extends BroadcastReceiver {
|
||
|
@Override
|
||
|
public void onReceive(Context context, Intent intent) {
|
||
|
Shell.su_raw("reboot");
|
||
|
}
|
||
|
}
|