Mike Dodd | d3b009a | 2015-08-11 11:16:59 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2015 The Android Open Source Project |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
| 17 | <resources> |
| 18 | |
| 19 | <!-- Preference keys for user-visible settings --> |
| 20 | <!-- Application-wide settings --> |
| 21 | <string name="notifications_category_pref_key" translatable="false">notifications_category</string> |
| 22 | <string name="mms_messaging_category_pref_key" translatable="false">mms_messaging_category</string> |
| 23 | <string name="advanced_category_pref_key" translatable="false">advanced_category</string> |
| 24 | <string name="notifications_enabled_pref_key" translatable="false">notifications_enabled</string> |
| 25 | <bool name="notifications_enabled_pref_default" translatable="false">true</bool> |
| 26 | <string name="notification_sound_pref_key" translatable="false">notification_sound</string> |
| 27 | <string name="notification_vibration_pref_key" translatable="false">notification_vibration</string> |
| 28 | <bool name="notification_vibration_pref_default" translatable="false">true</bool> |
| 29 | <string name="sms_disabled_pref_key" translatable="false">sms_disabled</string> |
| 30 | <string name="sms_enabled_pref_key" translatable="false">sms_enabled</string> |
| 31 | <string name="send_sound_pref_key" translatable="false">send_sound</string> |
| 32 | <bool name="send_sound_pref_default" translatable="false">true</bool> |
| 33 | <string name="advanced_pref_key" translatable="false">advanced_prefs</string> |
| 34 | |
| 35 | <!-- Subscription-specific settings. The values of these pref keys must be prefixed with |
Raman Tenneti | 4b52654 | 2020-07-29 16:40:49 -0700 | [diff] [blame] | 36 | "buglesub_" to allow for runtime checks --> |
Mike Dodd | d3b009a | 2015-08-11 11:16:59 -0700 | [diff] [blame] | 37 | <string name="delivery_reports_pref_key" translatable="false">buglesub_delivery_reports</string> |
| 38 | <bool name="delivery_reports_pref_default" translatable="false">false</bool> |
| 39 | <string name="auto_retrieve_mms_pref_key" translatable="false">buglesub_auto_retrieve_mms</string> |
| 40 | <bool name="auto_retrieve_mms_pref_default" translatable="false">true</bool> |
| 41 | <string name="auto_retrieve_mms_when_roaming_pref_key" translatable="false">buglesub_auto_retrieve_mms_when_roaming</string> |
| 42 | <bool name="auto_retrieve_mms_when_roaming_pref_default" translatable="false">false</bool> |
| 43 | <string name="group_mms_pref_key" translatable="false">buglesub_group_messaging</string> |
| 44 | <bool name="group_mms_pref_default" translatable="false">true</bool> |
| 45 | <string name="mms_phone_number_pref_key" translatable="false">buglesub_mms_phone_number</string> |
| 46 | <string name="wireless_alerts_key" translatable="false">buglesub_wireless_alerts_key</string> |
| 47 | <string name="apn_list_pref_key" translatable="false">buglesub_apn_list</string> |
| 48 | |
| 49 | <!-- Debug preferences --> |
| 50 | <string name="debug_pref_key" translatable="false">debug_category</string> |
| 51 | <string name="dump_sms_pref_key" translatable="false">dump_sms</string> |
| 52 | <bool name="dump_sms_pref_default" translatable="false">false</bool> |
| 53 | <string name="dump_mms_pref_key" translatable="false">dump_mms</string> |
| 54 | <bool name="dump_mms_pref_default" translatable="false">false</bool> |
| 55 | |
| 56 | |
| 57 | <!-- SMS/MMS settings keys --> |
| 58 | <!-- |
| 59 | TODO: Several of these are currently unused but are expected to be needed to |
| 60 | implement SMS/MMS delivery and basic settings. Once we have the core functionality in place |
| 61 | we should do a pass to remove any unused values here. |
| 62 | --> |
| 63 | <string name="sms_apns_key" translatable="false">sms_apns_key</string> |
| 64 | <string name="use_local_apn_pref_key" translatable="false">use_local_apn_pref_key</string> |
| 65 | <bool name="use_local_apn_pref_default" translatable="false">false</bool> |
| 66 | |
| 67 | <integer name="mediapicker_transition_duration">600</integer><!-- ms --> |
| 68 | <integer name="asyncimage_transition_duration">300</integer><!-- ms --> |
| 69 | <integer name="compose_transition_duration">300</integer><!-- ms --> |
| 70 | <integer name="camera_shutter_duration">200</integer><!-- ms --> |
| 71 | <fraction name="camera_shutter_max_alpha">70%</fraction> |
| 72 | |
| 73 | <integer name="snackbar_translation_duration_ms">300</integer> |
| 74 | |
| 75 | <!-- Notification preferences --> |
| 76 | <string name="notifications_group_children_key" translatable="false">notifications_group_children</string> |
| 77 | |
| 78 | <!-- format string for creating new image files. Passed to java.text.SimpleDateFormat. --> |
| 79 | <string name="new_image_file_name_format" translatable="false">"'IMG'_yyyyMMdd_HHmmss"</string> |
| 80 | <!-- format string for creating new files of unknown type. Passed to java.text.SimpleDateFormat. --> |
| 81 | <string name="new_file_name_format" translatable="false">"yyyyMMdd_HHmmss"</string> |
| 82 | |
| 83 | <!-- Swipe to Archive consts --> |
| 84 | <integer name="swipe_duration_ms">300</integer> |
| 85 | <integer name="swipe_max_fling_velocity_px_per_s">4000</integer> |
| 86 | |
| 87 | <!-- Fab animation const --> |
| 88 | <integer name="fab_animation_duration_ms">300</integer> |
| 89 | |
| 90 | <!-- Conversation list -> conversation animation const --> |
| 91 | <integer name="list_to_conversation_animation_duration_ms">300</integer> |
| 92 | |
| 93 | <!-- Generic reveal view animation duration --> |
| 94 | <integer name="reveal_view_animation_duration">300</integer> |
| 95 | </resources> |