mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-19 00:31:29 +00:00
13 lines
254 B
Java
13 lines
254 B
Java
![]() |
package com.topjohnwu.magisk.dummy;
|
||
|
|
||
|
import android.app.Service;
|
||
|
import android.content.Intent;
|
||
|
import android.os.IBinder;
|
||
|
|
||
|
public class DummyService extends Service {
|
||
|
@Override
|
||
|
public IBinder onBind(Intent intent) {
|
||
|
return null;
|
||
|
}
|
||
|
}
|