Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 101a10d7 authored by Brad Ebinger's avatar Brad Ebinger
Browse files

Add SIMULTANEOUS_CALLING to IntDef

Bug: 319904227
Change-Id: If15f8340996b4a8eaa6181ae5c46d3aa4ed34925
parent b2989453
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -195,7 +195,8 @@ public class ImsService extends Service {
                    // whether or not ImsFeature.FEATURE_EMERGENCY_MMTEL feature is set and should
                    // not be set by users of ImsService.
                    CAPABILITY_SIP_DELEGATE_CREATION,
                    CAPABILITY_TERMINAL_BASED_CALL_WAITING
                    CAPABILITY_TERMINAL_BASED_CALL_WAITING,
                    CAPABILITY_SUPPORTS_SIMULTANEOUS_CALLING
            })
    @Retention(RetentionPolicy.SOURCE)
    public @interface ImsServiceCapability {}
@@ -206,7 +207,9 @@ public class ImsService extends Service {
     */
    private static final Map<Long, String> CAPABILITIES_LOG_MAP = Map.of(
            CAPABILITY_EMERGENCY_OVER_MMTEL, "EMERGENCY_OVER_MMTEL",
            CAPABILITY_SIP_DELEGATE_CREATION, "SIP_DELEGATE_CREATION");
            CAPABILITY_SIP_DELEGATE_CREATION, "SIP_DELEGATE_CREATION",
            CAPABILITY_TERMINAL_BASED_CALL_WAITING, "TERMINAL_BASED_CALL_WAITING",
            CAPABILITY_SUPPORTS_SIMULTANEOUS_CALLING, "SIMULTANEOUS_CALLING");

    /**
     * The intent that must be defined as an intent-filter in the AndroidManifest of the ImsService.