diff options
| author | 2022-10-25 15:53:13 +0900 | |
|---|---|---|
| committer | 2022-10-26 09:41:05 +0900 | |
| commit | 2f0d1799584ba607eb3a0ac41f76f53b1d340b06 (patch) | |
| tree | 7198cb582f950e8e6cc812bcf5896e49ac134e55 | |
| parent | b49f8e2e164d679e445788a728c78e56a8b8c84b (diff) | |
add ServiceManager.getUpdatableNames()
Bug: 254201177
Test: m
Change-Id: I6921263e1f99c735c322a030d54ccc09a995563e
| -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 2dcf67483203..f2143f63d1ee 100644 --- a/core/java/android/os/ServiceManagerNative.java +++ b/core/java/android/os/ServiceManagerNative.java @@ -98,6 +98,10 @@ class ServiceManagerProxy implements IServiceManager { return mServiceManager.updatableViaApex(name); } + public String[] getUpdatableNames(String apexName) throws RemoteException { + return mServiceManager.getUpdatableNames(apexName); + } + public ConnectionInfo getConnectionInfo(String name) throws RemoteException { return mServiceManager.getConnectionInfo(name); } |