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

Commit 13c82513 authored by Tyler Gunn's avatar Tyler Gunn
Browse files

Add ITelephony setCepEnabled command line command.

This new command line command is used to disable conference event package
handling so that we can test behavior where CEP is not present on a
network, even though a network actually supports it.

Test: Disabled CEP using command line tool, verified bug disposition.
Bug: 139299700
Change-Id: I9f2258ddfbe982159de0f37d4a865e2511079c72
parent 763cb463
Loading
Loading
Loading
Loading
+5 −0
Original line number Original line Diff line number Diff line
@@ -2035,4 +2035,9 @@ interface ITelephony {
     * data might be disabled on non-default data subscription but explicitly turned on by settings.
     * data might be disabled on non-default data subscription but explicitly turned on by settings.
     */
     */
    boolean isDataAllowedInVoiceCall(int subId);
    boolean isDataAllowedInVoiceCall(int subId);

    /**
     * Command line command to enable or disable handling of CEP data for test purposes.
     */
    oneway void setCepEnabled(boolean isCepEnabled);
}
}