com.github.unidbg.linux.android.dvm.api.ServiceManager Maven / Gradle / Ivy
package com.github.unidbg.linux.android.dvm.api;
import com.github.unidbg.linux.android.dvm.DvmObject;
import com.github.unidbg.linux.android.dvm.VM;
public class ServiceManager extends DvmObject {
public ServiceManager(VM vm, String value) {
super(vm.resolveClass("android/os/IServiceManager"), value);
}
public SystemService getService(VM vm, String serviceName) {
return new SystemService(vm, serviceName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy