Skip to content

Commit

Permalink
update mms overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
dhacker29 committed Sep 25, 2012
1 parent 5eb9849 commit 75349cd
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
5 changes: 5 additions & 0 deletions overlay/aosp/packages/apps/Mms/res/xml/mms_config.xml
Expand Up @@ -25,6 +25,11 @@
<!-- Maximum message size in bytes for a MMS message -->
<int name="maxMessageSize">1228800</int>

<!-- Maximum height for an attached image -->
<int name="maxImageHeight">2448</int>
<!-- Maximum width for an attached image -->
<int name="maxImageWidth">3264</int>

<!-- UAProf URL -->
<string name="uaProfUrl">http://uaprof.vtext.com/mot/xt894/xt894.xml</string>

Expand Down
43 changes: 43 additions & 0 deletions overlay/aosp/packages/apps/Mms/res/xml/preferences.xml
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
* Copyright (C) 2007-2008 Esmertec AG.
* Copyright (C) 2007-2008 The Android Open Source Project
* QuickMessage: Copyright (C) 2012 The CyanogenMod Project (DvTonder)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/pref_mms_settings_title"
android:key="pref_key_mms_settings">
<CheckBoxPreference android:defaultValue="false"
android:key="pref_key_mms_delivery_reports"
android:summary="@string/pref_summary_mms_delivery_reports"
android:title="@string/pref_title_mms_delivery_reports" />
<CheckBoxPreference android:defaultValue="false"
android:key="pref_key_mms_read_reports"
android:summary="@string/pref_summary_mms_read_reports"
android:title="@string/pref_title_mms_read_reports" />
<CheckBoxPreference android:defaultValue="false"
android:key="pref_key_mms_auto_retrieval"
android:title="@string/pref_title_mms_auto_retrieval"
android:summary="@string/pref_summary_mms_auto_retrieval" />
<CheckBoxPreference android:layout="?android:attr/preferenceLayoutChild"
android:dependency="pref_key_mms_auto_retrieval"
android:defaultValue="false"
android:key="pref_key_mms_retrieval_during_roaming"
android:title="@string/pref_title_mms_retrieval_during_roaming"
android:summary="@string/pref_summary_mms_retrieval_during_roaming" />
</PreferenceCategory>
</PreferenceScreen>

0 comments on commit 75349cd

Please sign in to comment.