Merge "add ServiceManager.getUpdatableNames()" am: a031dd980a am: 370d00283f

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2266809

Change-Id: I46d068e6b1d9f8e04818c8166925d210dade4d6e
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Jooyung Han
2022-10-26 05:11:49 +00:00
committed by Automerger Merge Worker

View File

@@ -98,6 +98,10 @@ class ServiceManagerProxy implements IServiceManager {
return mServiceManager.updatableViaApex(name); return mServiceManager.updatableViaApex(name);
} }
public String[] getUpdatableNames(String apexName) throws RemoteException {
return mServiceManager.getUpdatableNames(apexName);
}
public ConnectionInfo getConnectionInfo(String name) throws RemoteException { public ConnectionInfo getConnectionInfo(String name) throws RemoteException {
return mServiceManager.getConnectionInfo(name); return mServiceManager.getConnectionInfo(name);
} }