mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-06 20:45:39 +00:00
15 lines
351 B
Java
15 lines
351 B
Java
![]() |
package com.topjohnwu.magisk.receivers;
|
||
|
|
||
|
import android.content.BroadcastReceiver;
|
||
|
import android.content.Context;
|
||
|
import android.content.Intent;
|
||
|
|
||
|
import com.topjohnwu.magisk.Global;
|
||
|
|
||
|
public class BootReceiver extends BroadcastReceiver {
|
||
|
@Override
|
||
|
public void onReceive(Context context, Intent intent) {
|
||
|
Global.initSuAccess();
|
||
|
}
|
||
|
}
|