mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-16 12:41:25 +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;
|
|
}
|
|
}
|