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

Commit 16cd961b authored by Suchand Ghosh's avatar Suchand Ghosh Committed by Ricardo Cerqueira
Browse files

IMS: Add participant support

Add Phone Capabilities ADD_PARTICIPANT and
Telephony Property ADD_PARTICIPANT_KEY.

CRs-Fixed: 720697

Conflicts:
telecomm/java/android/telecom/PhoneCapabilities.java
Change-Id: I779592de4a3d7d06ece32eb608e0652d20e5e7b5
parent 99a39bd3
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -96,6 +96,10 @@ public final class PhoneCapabilities {
            | ADD_CALL | RESPOND_VIA_TEXT | MUTE | MANAGE_CONFERENCE | SEPARATE_FROM_CONFERENCE
            | DISCONNECT_FROM_CONFERENCE;

    /* Add participant in an active or conference call option*/
    /** {@hide} */
    public static final int ADD_PARTICIPANT = 0x00004000;

    public static String toString(int capabilities) {
        StringBuilder builder = new StringBuilder();
        builder.append("[Capabilities:");
+1 −0
Original line number Diff line number Diff line
@@ -234,4 +234,5 @@ public interface TelephonyProperties

    static final String EXTRA_DIAL_CONFERENCE_URI =
            "org.codeaurora.extra.DIAL_CONFERENCE_URI";
    static final String ADD_PARTICIPANT_KEY = "add_participant";
}