Mike Dodd | d3b009a | 2015-08-11 11:16:59 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright 2013 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <mms_config version="4"> |
| 18 | <!-- Maximum message size in bytes for a MMS message --> |
| 19 | <int name="maxMessageSize">1048576</int> |
| 20 | |
| 21 | <!-- Maximum height for an attached image --> |
| 22 | <int name="maxImageHeight">1944</int> |
| 23 | |
| 24 | <!-- Maximum width for an attached image --> |
| 25 | <int name="maxImageWidth">2592</int> |
| 26 | |
| 27 | <!-- If true, The text message over 160 characters will be sent in multi part. |
| 28 | If false, The text message over 160 characters will be sent |
| 29 | via multi media message or separate, independent SMS messages, |
| 30 | dependent on sendMultipartSMSAsSeparateMessages value. --> |
| 31 | <bool name="enableMultipartSMS">false</bool> |
| 32 | |
| 33 | <!-- If this is true, The text message over 160 characters will be sent in separate, |
| 34 | independent messages after split into 160 character parts --> |
| 35 | <bool name="sendMultipartSmsAsSeparateMessages">true</bool> |
| 36 | |
| 37 | <!-- If true, The mms support slide duration. |
| 38 | If false, The mms does not support slide duration and we have to |
| 39 | set duration value. --> |
| 40 | <bool name="enableSlideDuration">false</bool> |
| 41 | |
| 42 | <!-- Maximum length for message text. Use a value of -1 |
| 43 | to indicate default value --> |
| 44 | <int name="maxMessageTextSize">-1</int> |
| 45 | |
| 46 | <bool name="enableMMSReadReports">false</bool> |
| 47 | |
| 48 | <bool name="enableSMSDeliveryReports">false</bool> |
| 49 | |
| 50 | <bool name="enableMMSDeliveryReports">false</bool> |
| 51 | |
| 52 | <!-- If true, need to read content_disposition field of an MMS part --> |
| 53 | <bool name="supportMmsContentDisposition">false</bool> |
| 54 | </mms_config> |
| 55 | |