diff options
| author | Bruno Martins <bgcngm@gmail.com> | 2018-04-03 23:05:47 +0100 |
|---|---|---|
| committer | Bruno Martins <bgcngm@gmail.com> | 2018-04-03 23:09:06 +0100 |
| commit | 8f575e58c56fd16401d9d2d62e8ee53f30933237 (patch) | |
| tree | 352009421f55b18ef7d63d928a45d019bd56b3f8 | |
| parent | 23713245cbd127a65902bdd51151797ba6a15c5b (diff) | |
flounder: Disable SMS capability on the WiFi-only variant
* Apparently the LTE variant can send/receive SMS
Change-Id: If1a0e1ede45a573fc00ac84f4d7ea387bf55bbd2
| -rw-r--r-- | wifi_only_overlay/frameworks/base/core/res/res/values/config.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/wifi_only_overlay/frameworks/base/core/res/res/values/config.xml b/wifi_only_overlay/frameworks/base/core/res/res/values/config.xml index c1a6f1f..c571af3 100644 --- a/wifi_only_overlay/frameworks/base/core/res/res/values/config.xml +++ b/wifi_only_overlay/frameworks/base/core/res/res/values/config.xml @@ -67,4 +67,14 @@ <item>"7,1"</item> <item>"9,1"</item> </string-array> + + <!-- Flag indicating whether the current device allows sms service. + If true, this means that the device supports both sending and + receiving sms via the telephony network. + This can be overridden to false for "data only" devices + which can't send and receive sms message. + + Note: Disable SMS also disable voicemail waiting sms, + cell broadcasting sms, and MMS. --> + <bool name="config_sms_capable">false</bool> </resources> |
