mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-19 05:31:28 +00:00
11 lines
275 B
Java
11 lines
275 B
Java
![]() |
package com.topjohnwu.magisk.dummy;
|
||
|
|
||
|
import android.content.BroadcastReceiver;
|
||
|
import android.content.Context;
|
||
|
import android.content.Intent;
|
||
|
|
||
|
public class DummyReceiver extends BroadcastReceiver {
|
||
|
@Override
|
||
|
public void onReceive(Context context, Intent intent) {}
|
||
|
}
|