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

Commit 88376bf0 authored by Tyler Gunn's avatar Tyler Gunn
Browse files

Update docuemntation on some Telecom-specific resources.

1. `config_requireCallCapableAccountForHandle` should never have existed
and is effectively a bug to have it set to `false`, so it is not used
any more.
2. `unloggable_phone_numbers` moves into the Telecom framework so that
OEMs can customize this in the future Telecom module.

Flag: com.android.server.telecom.flags.resolve_hidden_dependencies_two
Bug: 308205987
Test: Re-run unit tests and perform basic correctness testing.
Change-Id: I74fd039d8a86c6eda78c22e164bbfa3b5355b341
parent 88494897
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -2401,7 +2401,14 @@
    <integer name="config_mediaOutputSwitchDialogVersion">1</integer>

    <!-- Flag indicating that an outbound call must have a call capable phone account
         that has declared it can process the call's handle. -->
         that has declared it can process the call's handle.
         @deprecated This configuration is no longer used as having it false is actually a bug.
         This controlled which phone accounts we would consider using when finding call capable
         phone accounts for an outgoing call.  When false we will consider any call capable phone
         account even if the URI scheme doesn't match the outgoing call address.  That is wrong as
         dialing a sip: scheme call and trying to use a tel: scheme phone account is not going to
         work.  As such we now ALWAYS require the URI scheme to match when choosing call capable
         phone accounts. -->
    <bool name="config_requireCallCapableAccountForHandle">false</bool>

    <!-- Flag indicating if the user is notified when the mobile network access is restricted -->
@@ -3986,6 +3993,7 @@
    <bool name="config_allow_ussd_over_ims">false</bool>

    <!-- String array containing numbers that shouldn't be logged. Country-specific. -->
    <!-- @deprecated this now resides in the Telecom framework (same name). -->
    <string-array name="unloggable_phone_numbers" />

    <bool name="config_networkSamplingWakesDevice">true</bool>