Files
device_oplus_camera/oplus-fwk/src/com/oplus/wrapper/os/ServiceManager.java
chandu078 d0ffbb8aa8 Add OPLUS Camera support
[pjgowtham] : Add missing classes for oneplus 12 camera app

Co-authored-by: cjh1249131356 <cjh1249131356@gmail.com>
Co-authored-by: Pranav Vashi <neobuddy89@gmail.com>
2024-03-14 08:15:01 +05:30

18 lines
496 B
Java

package com.oplus.wrapper.os;
import android.os.IBinder;
public class ServiceManager {
public static void addService(String paramString, IBinder paramIBinder) {
android.os.ServiceManager.addService(paramString, paramIBinder);
}
public static IBinder checkService(String paramString) {
return android.os.ServiceManager.checkService(paramString);
}
public static IBinder getService(String paramString) {
return android.os.ServiceManager.getService(paramString);
}
}