diff options
| author | 2020-10-10 16:56:39 +0900 | |
|---|---|---|
| committer | 2020-10-10 17:01:51 +0900 | |
| commit | 7fd69370341035e22cbfc36ccc2a3c27f84c025b (patch) | |
| tree | 39984f4db62064a00dfa148b3ed32024135884bd | |
| parent | f83bccb02f7e8c8a8a270d8766fc3ce671894bfe (diff) | |
Add new config_sms_ask_every_time_support
New config_sms_ask_every_time_support indicates whether it supports
"Ask every time" for sms.
Test: build
Signed-off-by: Taesu Lee <taesu82.lee@samsung.com>
Change-Id: Ic7b123bced6cd741538f7c412d2b236cdce41c14
| -rw-r--r-- | core/res/res/values/config.xml | 3 | ||||
| -rw-r--r-- | core/res/res/values/symbols.xml | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index e0b58dd83981..b9199f7b3338 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -1780,6 +1780,9 @@ Note: This config is deprecated, please use config_defaultSms instead. --> <string name="default_sms_application" translatable="false">com.android.messaging</string> + <!-- Flag indicating whether the current device supports "Ask every time" for sms--> + <bool name="config_sms_ask_every_time_support">true</bool> + <!-- Flag indicating whether the current device allows data. If true, this means that the device supports data connectivity through the telephony network. diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index b130b91b2cd2..f9a7ba001d26 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -312,6 +312,7 @@ <java-symbol type="bool" name="config_networkSamplingWakesDevice" /> <java-symbol type="bool" name="config_showMenuShortcutsWhenKeyboardPresent" /> <java-symbol type="bool" name="config_sip_wifi_only" /> + <java-symbol type="bool" name="config_sms_ask_every_time_support" /> <java-symbol type="bool" name="config_sms_capable" /> <java-symbol type="bool" name="config_sms_utf8_support" /> <java-symbol type="bool" name="config_mobile_data_capable" /> |