add ServiceManager.getUpdatableNames()

Bug: 254201177
Test: m
Change-Id: I6921263e1f99c735c322a030d54ccc09a995563e
This commit is contained in:
Jooyung Han
2022-10-25 15:53:13 +09:00
parent b49f8e2e16
commit 2f0d179958

View File

@@ -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);
}