android.os.IServiceManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.os;
public interface IServiceManager extends IInterface {
void tryUnregisterService(String name, IBinder service);
IBinder getService(String name);
public void registerForNotifications(String name, IServiceCallback cb);
abstract class Stub extends Binder implements IServiceManager {
public static IServiceManager asInterface(IBinder obj) {
throw new UnsupportedOperationException();
}
}
}