diff --git a/telephony/java/android/telephony/mbms/IMbmsGroupCallSessionCallback.aidl b/telephony/java/android/telephony/mbms/IMbmsGroupCallSessionCallback.aidl index 1a1c7f8af5df1..43273a41fbd5c 100755 --- a/telephony/java/android/telephony/mbms/IMbmsGroupCallSessionCallback.aidl +++ b/telephony/java/android/telephony/mbms/IMbmsGroupCallSessionCallback.aidl @@ -25,6 +25,7 @@ oneway interface IMbmsGroupCallSessionCallback { void onError(int errorCode, String message); + @SuppressWarnings(value={"untyped-collection"}) void onAvailableSaisUpdated(in List currentSai, in List availableSais); void onServiceInterfaceAvailable(String interfaceName, int index); diff --git a/telephony/java/android/telephony/mbms/vendor/IMbmsGroupCallService.aidl b/telephony/java/android/telephony/mbms/vendor/IMbmsGroupCallService.aidl index 44cc24a839f2d..6e139ac5c462f 100755 --- a/telephony/java/android/telephony/mbms/vendor/IMbmsGroupCallService.aidl +++ b/telephony/java/android/telephony/mbms/vendor/IMbmsGroupCallService.aidl @@ -29,9 +29,11 @@ interface IMbmsGroupCallService void stopGroupCall(int subId, long tmgi); + @SuppressWarnings(value={"untyped-collection"}) void updateGroupCall(int subscriptionId, long tmgi, in List saiList, in List frequencyList); + @SuppressWarnings(value={"untyped-collection"}) int startGroupCall(int subscriptionId, long tmgi, in List saiList, in List frequencyList, IGroupCallCallback callback); diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index 018dabfdb5521..63732b5ee444a 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -1980,6 +1980,7 @@ interface ITelephony { /** * Return the emergency number list from all the active subscriptions. */ + @SuppressWarnings(value={"untyped-collection"}) Map getEmergencyNumberList(String callingPackage, String callingFeatureId); /**