Merge "Add an API in ITelephony to update satellite service package" into udc-dev

This commit is contained in:
Thomas Nguyen
2023-03-31 23:42:28 +00:00
committed by Android (Google) Code Review

View File

@@ -2980,4 +2980,13 @@ interface ITelephony {
@JavaPassthrough(annotation="@android.annotation.RequiresPermission("
+ "android.Manifest.permission.SATELLITE_COMMUNICATION)")
void requestTimeForNextSatelliteVisibility(int subId, in ResultReceiver receiver);
/**
* This API can be used by only CTS to update satellite vendor service package name.
*
* @param servicePackageName The package name of the satellite vendor service.
* @return {@code true} if the satellite vendor service is set successfully,
* {@code false} otherwise.
*/
boolean setSatelliteServicePackageName(in String servicePackageName);
}