diff options
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/os/ServiceManagerNative.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/os/ServiceManagerNative.java b/core/java/android/os/ServiceManagerNative.java index 60acc57d0cfe..755c35f4767a 100644 --- a/core/java/android/os/ServiceManagerNative.java +++ b/core/java/android/os/ServiceManagerNative.java @@ -94,6 +94,10 @@ class ServiceManagerProxy implements IServiceManager { return mServiceManager.getDeclaredInstances(iface); } + public String updatableViaApex(String name) throws RemoteException { + return mServiceManager.updatableViaApex(name); + } + public void registerClientCallback(String name, IBinder service, IClientCallback cb) throws RemoteException { throw new RemoteException(); |
