blob: 84a902b949abfd88b847b4b69c531d8ca360027b [file] [log] [blame]
The Android Open Source Project72735c62009-03-03 19:32:28 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4 * Copyright (C) 2007-2008 Esmertec AG.
5 * Copyright (C) 2007-2008 The Android Open Source Project
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19-->
20<manifest xmlns:android="http://schemas.android.com/apk/res/android"
21 package="com.android.mms">
22
Jeff Hamiltonf0ed6162010-02-11 16:25:51 -060023 <original-package android:name="com.android.mms" />
xiaoxu0583da02019-01-29 10:24:12 +080024 <uses-sdk android:minSdkVersion="23" android:targetSdkVersion="28" />
Jeff Hamiltonf0ed6162010-02-11 16:25:51 -060025
The Android Open Source Project72735c62009-03-03 19:32:28 -080026 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
27 <uses-permission android:name="android.permission.CALL_PHONE" />
28 <uses-permission android:name="android.permission.READ_CONTACTS" />
29 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
Tom Taylor52c5d492011-08-09 11:07:43 -070030 <uses-permission android:name="android.permission.READ_PROFILE" />
The Android Open Source Project72735c62009-03-03 19:32:28 -080031 <uses-permission android:name="android.permission.RECEIVE_SMS" />
32 <uses-permission android:name="android.permission.RECEIVE_MMS" />
33 <uses-permission android:name="android.permission.SEND_SMS" />
34 <uses-permission android:name="android.permission.VIBRATE" />
35 <uses-permission android:name="android.permission.INTERNET" />
36 <uses-permission android:name="android.permission.READ_SMS"/>
37 <uses-permission android:name="android.permission.WRITE_SMS"/>
38 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
39 <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
40 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
41 <uses-permission android:name="android.permission.WAKE_LOCK" />
Ficus Kirkpatrick9014c882009-06-10 18:07:18 -070042 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Tom Taylor07dde492009-08-06 15:32:26 -070043 <uses-permission android:name="android.permission.INSTALL_DRM" />
Robert Greenwaltadf77882012-08-17 12:27:37 -070044 <uses-permission android:name="android.permission.WRITE_APN_SETTINGS" />
yanglv3711c2e2014-08-30 16:40:58 +080045 <uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS" />
46 <uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"/>
Mengjun Leng566f7022014-08-07 16:22:57 +080047 <uses-permission android:name="com.qualcomm.permission.USE_PHONE_SERVICE"/>
yanglv08e27a22014-02-13 14:07:42 +080048 <uses-permission android:name="android.permission.GET_TASKS"/>
Mengjun Leng277778c2014-08-27 12:15:30 +080049 <uses-permission android:name="android.permission.RECEIVE_WAP_PUSH" />
kaiyiz64804502014-11-10 13:43:18 +080050 <uses-permission android:name="android.permission.MANAGE_DOCUMENTS" />
xiaoxuec4b4242019-09-05 12:38:41 +080051 <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"/>
Pragati Jec09a232014-12-10 15:21:37 +053052 <!-- Needed for OMA Client Provisioning -->
53 <uses-permission android:name="org.codeaurora.omacp.permission.SHOW_CONFIGURATION_MESSAGE" />
yanglv08e27a22014-02-13 14:07:42 +080054
Fang Yunong7295b5a2015-11-18 14:41:42 +080055 <!-- wifi -->
56 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
57 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
xiaoxu3d3504f2019-05-20 15:20:05 +080058 <uses-permission android:name="android.permission.CALL_PRIVILEGED" />
Fang Yunong7295b5a2015-11-18 14:41:42 +080059
The Android Open Source Project72735c62009-03-03 19:32:28 -080060 <application android:name="MmsApp"
61 android:label="@string/app_label"
Justin Hof9df9af2011-08-22 13:23:16 -070062 android:icon="@mipmap/ic_launcher_smsmms"
The Android Open Source Project72735c62009-03-03 19:32:28 -080063 android:taskAffinity="android.task.mms"
Paresh Nakhe83c01b72014-01-28 16:51:35 +053064 android:backupAgent="QTIBackupAgent"
kaiyizc248d242014-09-30 11:43:08 +080065 android:allowTaskReparenting="true"
xiaoxu0583da02019-01-29 10:24:12 +080066 android:usesCleartextTraffic="true"
kaiyizc248d242014-09-30 11:43:08 +080067 android:supportsRtl="true">
Mengjun Leng277778c2014-08-27 12:15:30 +080068 <uses-library android:name="com.qrd.wappush" android:required="false" />
The Android Open Source Project72735c62009-03-03 19:32:28 -080069
70 <service android:name=".transaction.TransactionService"
Tom Taylorb7c43642012-10-31 09:19:40 -070071 android:exported="false" />
The Android Open Source Project72735c62009-03-03 19:32:28 -080072
Tom Taylorf766f332009-08-10 15:05:03 -070073 <service android:name=".transaction.SmsReceiverService"
Tom Taylorb7c43642012-10-31 09:19:40 -070074 android:exported="false" />
The Android Open Source Project72735c62009-03-03 19:32:28 -080075
76 <activity android:name=".ui.ConversationList"
77 android:label="@string/app_label"
Tom Taylor3ccec282011-08-31 17:30:35 -070078 android:configChanges="orientation|screenSize|keyboardHidden"
Ruijie Bai442cbc32016-03-09 17:00:14 +080079 android:theme="@style/MmsNewStyleTheme"
The Android Open Source Project72735c62009-03-03 19:32:28 -080080 android:launchMode="singleTop">
81 <intent-filter>
82 <action android:name="android.intent.action.MAIN" />
83 <category android:name="android.intent.category.LAUNCHER" />
84 <category android:name="android.intent.category.DEFAULT" />
Jeff Brown4ce9f292011-11-28 17:11:27 -080085 <category android:name="android.intent.category.APP_MESSAGING" />
The Android Open Source Project72735c62009-03-03 19:32:28 -080086 </intent-filter>
87 <intent-filter>
88 <action android:name="android.intent.action.MAIN" />
89 <category android:name="android.intent.category.DEFAULT" />
90 <data android:mimeType="vnd.android.cursor.dir/mms" />
91 </intent-filter>
92 <intent-filter>
93 <action android:name="android.intent.action.MAIN" />
94 <category android:name="android.intent.category.DEFAULT" />
95 <data android:mimeType="vnd.android-dir/mms-sms" />
96 </intent-filter>
97 </activity>
98
Ruijie Baibd5a9a72016-04-07 19:32:58 +080099 <activity android:name=".ui.NotificationConversationList"
100 android:configChanges="orientation|screenSize|keyboardHidden"
101 android:theme="@style/MmsNewStyleTheme"
102 android:uiOptions="splitActionBarWhenNarrow"
103 android:launchMode="singleTop">
104 </activity>
105
Zhang Fangfea66fd2014-08-20 16:46:14 +0800106 <activity android:name=".ui.MailBoxMessageList"
107 android:label="@string/app_label"
108 android:configChanges="orientation|screenSize|keyboardHidden"
109 android:theme="@style/MmsHoloTheme"
110 android:uiOptions="splitActionBarWhenNarrow"
111 android:launchMode="singleTop">
112 <intent-filter>
113 <action android:name="android.intent.action.VIEW" />
114 <category android:name="android.intent.category.DEFAULT" />
115 </intent-filter>
116 </activity>
117
yanglv149ab602014-09-11 09:23:23 +0800118 <activity android:name=".ui.MailBoxMessageContent"
Zhang Fangfea66fd2014-08-20 16:46:14 +0800119 android:label="@string/message_detail"
120 android:theme="@style/MmsHoloTheme"
121 android:configChanges="orientation|screenSize|keyboardHidden"
122 android:launchMode="singleTop" >
123 </activity>
124
Ruijie Bai0c9554c2016-05-26 17:21:10 +0800125 <activity android:name=".ui.SelectableCopyActivity"
126 android:theme="@style/SelectableCopyTheme">
127 </activity>
128
The Android Open Source Project72735c62009-03-03 19:32:28 -0800129 <activity android:name=".ui.ComposeMessageActivity"
Tom Taylor3ccec282011-08-31 17:30:35 -0700130 android:configChanges="orientation|screenSize|keyboardHidden"
Wei Huang706aae12012-10-17 13:33:04 -0700131 android:windowSoftInputMode="stateHidden|adjustResize"
Ruijie Bai442cbc32016-03-09 17:00:14 +0800132 android:theme="@style/NoActionBar"
Tom Taylor6cc254a2012-04-30 09:28:54 -0700133 android:parentActivityName=".ui.ConversationList"
Wei Huang812391a2009-08-25 01:55:44 -0700134 android:launchMode="singleTop" >
The Android Open Source Project72735c62009-03-03 19:32:28 -0800135 <intent-filter>
136 <action android:name="android.intent.action.VIEW" />
137 <category android:name="android.intent.category.DEFAULT" />
138 <data android:mimeType="vnd.android-dir/mms-sms" />
139 </intent-filter>
140 <intent-filter>
141 <action android:name="android.intent.action.VIEW" />
142 <action android:name="android.intent.action.SENDTO" />
143 <category android:name="android.intent.category.DEFAULT" />
144 <category android:name="android.intent.category.BROWSABLE" />
145 <data android:scheme="sms" />
146 <data android:scheme="smsto" />
147 </intent-filter>
148 <intent-filter>
149 <action android:name="android.intent.action.VIEW" />
150 <action android:name="android.intent.action.SENDTO" />
151 <category android:name="android.intent.category.DEFAULT" />
152 <category android:name="android.intent.category.BROWSABLE" />
153 <data android:scheme="mms" />
154 <data android:scheme="mmsto" />
155 </intent-filter>
156 <intent-filter>
157 <action android:name="android.intent.action.SEND" />
158 <category android:name="android.intent.category.DEFAULT" />
159 <data android:mimeType="image/*" />
kaiyiz99013462014-12-30 15:51:12 +0800160 <data android:mimeType="audio/*" />
kaiyiz46319052014-10-23 11:10:20 +0800161 <data android:mimeType="video/*" />
The Android Open Source Project72735c62009-03-03 19:32:28 -0800162 </intent-filter>
163 <intent-filter>
164 <action android:name="android.intent.action.SEND" />
165 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project72735c62009-03-03 19:32:28 -0800166 <data android:mimeType="text/plain" />
167 </intent-filter>
Tom Tayloredd39352009-08-12 14:48:58 -0700168 <intent-filter>
169 <action android:name="android.intent.action.SEND_MULTIPLE" />
170 <category android:name="android.intent.category.DEFAULT" />
Tom Taylorbf6546a2011-09-01 17:42:22 -0700171 <data android:mimeType="image/*" />
kaiyiz99013462014-12-30 15:51:12 +0800172 <data android:mimeType="audio/*" />
kaiyiz46319052014-10-23 11:10:20 +0800173 <data android:mimeType="video/*" />
Tom Tayloredd39352009-08-12 14:48:58 -0700174 </intent-filter>
Su WeiHua2541f892015-09-08 09:46:17 +0800175 </activity>
Zhang Fang33846972014-08-27 14:37:46 +0800176
Tom Taylor75f79622009-10-06 11:07:38 -0700177 <activity-alias android:name=".ui.ForwardMessageActivity"
178 android:targetActivity=".ui.ComposeMessageActivity"
Tom Taylor3ccec282011-08-31 17:30:35 -0700179 android:configChanges="orientation|screenSize|keyboardHidden"
Tom Taylorfe9a5232011-07-25 17:00:43 -0700180 android:windowSoftInputMode="stateHidden"
181 android:theme="@style/MmsHoloTheme" >
Tom Taylor75f79622009-10-06 11:07:38 -0700182 </activity-alias>
183
Tom Taylor6a3fc7a2012-03-20 15:17:26 -0700184 <activity android:name=".ui.ComposeMessageActivityNoLockScreen"
185 android:configChanges="orientation|screenSize|keyboardHidden"
186 android:windowSoftInputMode="stateHidden"
187 android:theme="@style/MmsHoloTheme"
188 android:exported="false"
189 android:launchMode="singleTop" >
190 </activity>
191
The Android Open Source Project72735c62009-03-03 19:32:28 -0800192 <activity android:name=".ui.DeliveryReportActivity"
Eric Fischer61e00212009-04-16 10:57:03 -0700193 android:label="@string/delivery_report_activity"
The Android Open Source Project72735c62009-03-03 19:32:28 -0800194 android:theme="@android:style/Theme.Dialog">
195 </activity>
196
Tom Taylorf766f332009-08-10 15:05:03 -0700197 <activity android:name=".ui.WarnOfStorageLimitsActivity"
198 android:theme="@android:style/Theme.Dialog"
199 android:label="@string/storage_limits_activity"
200 android:excludeFromRecents="true">
201 </activity>
202
The Android Open Source Project72735c62009-03-03 19:32:28 -0800203 <activity android:name=".ui.EditSlideDurationActivity"
Eric Fischer61e00212009-04-16 10:57:03 -0700204 android:label="@string/change_duration_activity"
The Android Open Source Project72735c62009-03-03 19:32:28 -0800205 android:theme="@android:style/Theme.Dialog">
206 </activity>
207
The Android Open Source Project72735c62009-03-03 19:32:28 -0800208 <activity android:name=".ui.SlideshowEditActivity"
Tom Taylorb5204142011-07-21 13:12:50 -0700209 android:theme="@style/MmsHoloTheme"
Eric Fischer61e00212009-04-16 10:57:03 -0700210 android:label="@string/edit_slideshow_activity" />
The Android Open Source Project72735c62009-03-03 19:32:28 -0800211
Tom Taylorea339a22012-09-13 12:00:59 -0700212 <activity android:name=".ui.RecipientListActivity"
213 android:theme="@style/MmsHoloTheme"
214 android:label="@string/recipient_list_activity" />
215
The Android Open Source Project72735c62009-03-03 19:32:28 -0800216 <activity android:name=".ui.SlideEditorActivity"
The Android Open Source Project836945d2009-03-11 12:11:58 -0700217 android:windowSoftInputMode="adjustResize"
xiaoxu6f8e3782018-04-11 09:39:18 +0800218 android:theme="@style/MmsMaterialHoloTheme"
Eric Fischer61e00212009-04-16 10:57:03 -0700219 android:label="@string/edit_slide_activity" />
The Android Open Source Project72735c62009-03-03 19:32:28 -0800220
The Android Open Source Project72735c62009-03-03 19:32:28 -0800221 <activity android:name=".ui.SlideshowActivity"
Tom Taylora0829542009-11-02 09:12:32 -0800222 android:noHistory="true"
Tom Taylor196c3572011-09-29 17:02:34 -0700223 android:configChanges="orientation|screenSize|keyboardHidden"
Tom Taylorfe9a5232011-07-25 17:00:43 -0700224 android:theme="@style/MmsHoloTheme"
Eric Fischer61e00212009-04-16 10:57:03 -0700225 android:label="@string/slideshow_activity">
The Android Open Source Project72735c62009-03-03 19:32:28 -0800226 </activity>
yanglvd7eee902014-08-30 17:20:00 +0800227 <activity android:name=".ui.MobilePaperShowActivity"
228 android:configChanges="orientation|screenSize|keyboardHidden"
229 android:theme="@style/MmsHoloTheme"
230 android:label="@string/slideshow_activity">
231 </activity>
The Android Open Source Project72735c62009-03-03 19:32:28 -0800232
233 <activity android:name=".ui.ClassZeroActivity"
Eric Fischer61e00212009-04-16 10:57:03 -0700234 android:label="@string/class_0_message_activity"
Yong Liu43bcf482009-08-11 13:25:01 -0500235 android:theme="@android:style/Theme.Translucent"
Tom Taylor88302012013-12-03 10:29:16 -0800236 android:configChanges="orientation|screenSize|keyboardHidden"
237 android:launchMode="singleTask"
Yong Liu43bcf482009-08-11 13:25:01 -0500238 android:excludeFromRecents="true">
The Android Open Source Project72735c62009-03-03 19:32:28 -0800239 </activity>
240
241 <activity android:name=".ui.MessagingPreferenceActivity"
Ruijie Bai5e7a9952016-05-24 16:48:11 +0800242 android:theme="@style/MmsSettingStyleTheme"
Tom Taylor2e861872011-10-18 16:58:30 -0700243 android:configChanges="orientation|screenSize|keyboardHidden"
The Android Open Source Project72735c62009-03-03 19:32:28 -0800244 android:label="@string/preferences_title" />
245
Ruijie Baida1fedf2016-03-17 17:56:27 +0800246 <activity android:name=".ui.SmsPreferenceActivity"
Ruijie Bai5e7a9952016-05-24 16:48:11 +0800247 android:theme="@style/MmsSettingStyleTheme"
Ruijie Baida1fedf2016-03-17 17:56:27 +0800248 android:configChanges="orientation|screenSize|keyboardHidden"
249 android:label="@string/pref_sms_settings_title" />
250
251 <activity android:name=".ui.MmsPreferenceActivity"
Ruijie Bai5e7a9952016-05-24 16:48:11 +0800252 android:theme="@style/MmsSettingStyleTheme"
Ruijie Baida1fedf2016-03-17 17:56:27 +0800253 android:configChanges="orientation|screenSize|keyboardHidden"
254 android:label="@string/pref_mms_settings_title" />
255
256 <activity android:name=".ui.MessagingReportsPreferenceActivity"
Ruijie Bai5e7a9952016-05-24 16:48:11 +0800257 android:theme="@style/MmsSettingStyleTheme"
Ruijie Baida1fedf2016-03-17 17:56:27 +0800258 android:configChanges="orientation|screenSize|keyboardHidden"
259 android:label="@string/pref_mms_settings_title" />
260
261 <activity android:name=".ui.ManageSimSMSPreferenceActivity"
Ruijie Bai5e7a9952016-05-24 16:48:11 +0800262 android:theme="@style/MmsSettingStyleTheme"
Ruijie Baida1fedf2016-03-17 17:56:27 +0800263 android:configChanges="orientation|screenSize|keyboardHidden"
264 android:label="@string/pref_mms_settings_title" />
265
266 <activity android:name=".ui.MessagingExpiryPreferenceActivity"
Ruijie Bai5e7a9952016-05-24 16:48:11 +0800267 android:theme="@style/MmsSettingStyleTheme"
Ruijie Baida1fedf2016-03-17 17:56:27 +0800268 android:configChanges="orientation|screenSize|keyboardHidden"
269 android:label="@string/pref_mms_settings_title" />
270
271 <activity android:name=".ui.SMSCPreferenceActivity"
Ruijie Bai5e7a9952016-05-24 16:48:11 +0800272 android:theme="@style/MmsSettingStyleTheme"
Ruijie Baida1fedf2016-03-17 17:56:27 +0800273 android:configChanges="orientation|screenSize|keyboardHidden"
274 android:label="@string/pref_mms_settings_title" />
275
yanglv25b37772016-06-30 15:10:26 +0800276 <activity android:name=".ui.SMSPreferStoragePreferenceActivity"
277 android:theme="@style/MmsSettingStyleTheme"
278 android:configChanges="orientation|screenSize|keyboardHidden"
279 android:label="@string/pref_sms_settings_title" />
280
Ruijie Baida1fedf2016-03-17 17:56:27 +0800281 <activity android:name=".ui.WwwContextMenuActivity"
yanglv3711c2e2014-08-30 16:40:58 +0800282 android:label="@string/message_options"
283 android:theme="@android:style/Theme.Holo.Light.Dialog"
284 android:excludeFromRecents="true">
285 <intent-filter>
286 <action android:name="android.intent.action.VIEW" />
287 <category android:name="android.intent.category.DEFAULT" />
288 <category android:name="android.intent.category.BROWSABLE" />
289 </intent-filter>
290 </activity>
291
The Android Open Source Project72735c62009-03-03 19:32:28 -0800292 <receiver android:name=".transaction.PushReceiver"
293 android:permission="android.permission.BROADCAST_WAP_PUSH">
294 <intent-filter>
David Braun009ad1b2013-09-16 13:46:23 -0700295 <action android:name="android.provider.Telephony.WAP_PUSH_DELIVER" />
The Android Open Source Project72735c62009-03-03 19:32:28 -0800296 <data android:mimeType="application/vnd.wap.mms-message" />
Mengjun Leng277778c2014-08-27 12:15:30 +0800297 <data android:mimeType="application/vnd.wap.sic" />
298 <data android:mimeType="application/vnd.wap.slc" />
The Android Open Source Project72735c62009-03-03 19:32:28 -0800299 </intent-filter>
Yashdev Singhfa2836f2014-11-11 18:52:56 -0800300
The Android Open Source Project72735c62009-03-03 19:32:28 -0800301 </receiver>
302
The Android Open Source Project72735c62009-03-03 19:32:28 -0800303 <activity android:name=".ui.ManageSimMessages"
Ruijie Bai5e7a9952016-05-24 16:48:11 +0800304 android:theme="@style/MmsNewStyleTheme"
The Android Open Source Project72735c62009-03-03 19:32:28 -0800305 android:launchMode="singleTop"
Tom Taylor1cd325e2011-11-14 14:41:06 -0800306 android:configChanges="orientation|screenSize|keyboardHidden"
The Android Open Source Project72735c62009-03-03 19:32:28 -0800307 android:label="@string/sim_manage_messages_title">
308 <intent-filter>
309 <action android:name="android.intent.action.VIEW" />
310 </intent-filter>
311 </activity>
312
313 <!-- Require sender permissions to prevent SMS spoofing -->
314 <receiver android:name=".transaction.PrivilegedSmsReceiver"
315 android:permission="android.permission.BROADCAST_SMS">
316 <intent-filter>
David Braun009ad1b2013-09-16 13:46:23 -0700317 <action android:name="android.provider.Telephony.SMS_DELIVER" />
The Android Open Source Project72735c62009-03-03 19:32:28 -0800318 </intent-filter>
319 </receiver>
Tom Taylorf766f332009-08-10 15:05:03 -0700320
Sukanya Rajkhowa50b93d82014-01-07 11:39:42 -0800321 <!-- Require the sender to have this permission to prevent third party spoofing -->
322 <receiver android:name=".transaction.PrivilegedCbReceiver"
323 android:permission="android.permission.RECEIVE_EMERGENCY_BROADCAST">
324 <intent-filter>
325 <action android:name="android.cellbroadcastreceiver.CB_AREA_INFO_RECEIVED" />
326 </intent-filter>
327 </receiver>
328
The Android Open Source Project72735c62009-03-03 19:32:28 -0800329 <!-- Catch-all receiver for broadcasts that don't have associated security -->
Tom Taylor008d6202014-09-26 14:36:36 -0700330 <receiver android:name=".transaction.SmsReceiver"
Zhibin Wangedb21872015-11-23 12:53:46 +0800331 android:permission="android.permission.SEND_SMS">
The Android Open Source Project72735c62009-03-03 19:32:28 -0800332 <intent-filter>
The Android Open Source Project72735c62009-03-03 19:32:28 -0800333 <action android:name="com.android.mms.transaction.MESSAGE_SENT" />
334 <!-- TODO Do a better data match here. -->
335 <data android:scheme="content" />
336 </intent-filter>
Bai Tao52b0fc72010-01-13 08:19:24 +0800337 <intent-filter>
Chaitanya Saggurthi14521af2014-08-08 20:08:53 +0530338 <action android:name="com.android.mms.transaction.SEND_MESSAGE" />
339 </intent-filter>
xiaoxu71d79a02018-07-18 10:17:14 +0800340 <intent-filter>
341 <action android:name="android.intent.action.BOOT_COMPLETED" />
342 </intent-filter>
The Android Open Source Project72735c62009-03-03 19:32:28 -0800343 </receiver>
344
345 <receiver android:name=".transaction.MessageStatusReceiver">
346 <intent-filter>
347 <action android:name="com.android.mms.transaction.MessageStatusReceiver.MESSAGE_STATUS_RECEIVED" />
348 </intent-filter>
349 </receiver>
350
Tom Taylor07ddb5c2012-02-28 14:02:06 -0800351 <service android:name=".transaction.MessageStatusService"/>
352
The Android Open Source Project72735c62009-03-03 19:32:28 -0800353 <receiver android:name=".transaction.SimFullReceiver">
354 <intent-filter>
355 <action android:name="android.provider.Telephony.SIM_FULL" />
356 </intent-filter>
357 </receiver>
358
359 <activity android:name=".ui.ConfirmRateLimitActivity"
360 android:theme="@android:style/Theme.Dialog">
361 <intent-filter>
362 <action android:name="com.android.mms.RATE_LIMIT_SURPASSED" />
363 <category android:name="android.intent.category.DEFAULT" />
364 </intent-filter>
365 </activity>
Mark Wagner33186452009-06-08 10:26:05 -0700366
yanglv45a67402014-07-29 19:48:10 +0800367 <activity android:name=".ui.MessageTemplate"
Ruijie Bai5e7a9952016-05-24 16:48:11 +0800368 android:theme="@style/MmsSettingStyleTheme"
yanglv45a67402014-07-29 19:48:10 +0800369 android:launchMode="singleTop"
370 android:label="@string/message_template_title"
371 android:configChanges="orientation|screenSize" >
372 </activity>
373
yanglvfe8194f2014-08-08 18:14:47 +0800374 <activity android:name=".ui.SearchActivityExtend"
375 android:theme="@style/MmsHoloTheme"
376 android:label="@string/search_title"
377 android:configChanges="orientation|screenSize|keyboardHidden">
378 </activity>
379
Mark Wagner33186452009-06-08 10:26:05 -0700380 <activity android:name=".ui.SearchActivity"
Tom Taylorfe9a5232011-07-25 17:00:43 -0700381 android:theme="@style/MmsHoloTheme"
Mark Wagner33186452009-06-08 10:26:05 -0700382 android:label="@string/search"
Tom Taylor3ccec282011-08-31 17:30:35 -0700383 android:configChanges="orientation|screenSize|keyboardHidden" >
Mark Wagner33186452009-06-08 10:26:05 -0700384 <intent-filter>
385 <action android:name="android.intent.action.SEARCH" />
386 <category android:name="android.intent.category.DEFAULT" />
387 </intent-filter>
388 <meta-data android:name="android.app.searchable"
389 android:resource="@xml/searchable" />
390 </activity>
391
Zhang Fang1687daf2014-01-09 11:01:13 +0800392 <activity android:name=".ui.MultiPickContactGroups"
393 android:configChanges="orientation|screenSize">
394 <intent-filter>
395 <action android:name="android.intent.action.VIEW" />
396 <category android:name="android.intent.category.DEFAULT" />
397 </intent-filter>
398 </activity>
399
Mark Wagner33186452009-06-08 10:26:05 -0700400 <meta-data android:name="android.app.default_searchable"
401 android:value=".ui.SearchActivity" />
402
Wei Huangc0c44202009-11-09 23:20:08 -0800403 <!-- Search Suggestions Provider -->
404 <provider android:name="SuggestionsProvider"
Nick Kralevich98384672012-07-30 12:53:39 -0700405 android:exported="true"
Tom Taylor6e7f8082010-03-15 11:19:26 -0700406 android:readPermission="android.permission.READ_SMS"
407 android:authorities="com.android.mms.SuggestionsProvider" >
408 <path-permission
409 android:pathPrefix="/search_suggest_query"
410 android:readPermission="android.permission.GLOBAL_SEARCH" />
411 <path-permission
412 android:pathPrefix="/search_suggest_shortcut"
413 android:readPermission="android.permission.GLOBAL_SEARCH" />
414 </provider>
415
Tom Taylor6d38b192011-08-11 14:35:31 -0700416 <service android:name=".ui.NoConfirmationSendService"
Daisuke Miyakawa24f5e462012-03-26 10:52:04 -0700417 android:permission="android.permission.SEND_RESPOND_VIA_MESSAGE"
Tom Taylor6d38b192011-08-11 14:35:31 -0700418 android:exported="true" >
419 <intent-filter>
Daisuke Miyakawa24f5e462012-03-26 10:52:04 -0700420 <action android:name="android.intent.action.RESPOND_VIA_MESSAGE" />
Tom Taylor6d38b192011-08-11 14:35:31 -0700421 <category android:name="android.intent.category.DEFAULT" />
422 <data android:scheme="sms" />
423 <data android:scheme="smsto" />
424 </intent-filter>
425 </service>
426
Mark Wagner9aeb4e92011-09-29 11:56:12 -0700427 <provider android:name="TempFileProvider"
Nick Kralevich98384672012-07-30 12:53:39 -0700428 android:exported="true"
Mark Wagner9aeb4e92011-09-29 11:56:12 -0700429 android:authorities="mms_temp_file"
xiaoxucbe1cd22020-05-21 18:35:01 +0800430 android:grantUriPermissions="true"
Mark Wagner9aeb4e92011-09-29 11:56:12 -0700431 android:multiprocess="true" />
432
Tom Taylord8367562011-11-10 15:31:12 -0800433 <activity android:name=".ui.MiniPreferenceActivity" >
434 <intent-filter>
435 <action android:name="com.android.mms.intent.action.MESSAGING_APP_NOTIFICATIONS" />
436 <category android:name="android.intent.category.DEFAULT" />
437 </intent-filter>
438 </activity>
Ruijie Baic15ae602016-03-15 13:40:26 +0800439
440 <!-- Widget
Tom Taylorc7aa6322012-03-19 11:46:09 -0700441 <receiver android:name=".widget.MmsWidgetProvider" android:label="@string/app_label">
442 <intent-filter>
443 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
444 </intent-filter>
445 <intent-filter>
446 <action android:name="com.android.mms.intent.action.ACTION_NOTIFY_DATASET_CHANGED" />
447 </intent-filter>
wangjing8be06ba2015-06-23 16:38:19 +0800448 <intent-filter>
449 <action android:name="android.intent.action.TIME_SET" />
450 </intent-filter>
Tom Taylorc7aa6322012-03-19 11:46:09 -0700451 <meta-data android:name="android.appwidget.provider"
452 android:resource="@xml/widget_info" />
453 </receiver>
454 <service android:name=".widget.MmsWidgetService"
455 android:permission="android.permission.BIND_REMOTEVIEWS"
456 android:exported="false" />
Ruijie Baic15ae602016-03-15 13:40:26 +0800457 -->
yanglv45a67402014-07-29 19:48:10 +0800458
Zhang Fang33846972014-08-27 14:37:46 +0800459 <activity android:name=".ui.MultiPickContactsActivity"
460 android:windowSoftInputMode="stateHidden|adjustResize"
461 android:configChanges="orientation|keyboardHidden|screenSize" >
462 </activity>
463
yanglv45a67402014-07-29 19:48:10 +0800464 <!-- Message Template Content Provider -->
465 <provider android:name="MessageTemplateProvider"
Pragnya Paramita99b4e042015-04-16 17:36:52 +0530466 android:authorities="com.android.mms.MessageTemplateProvider" >
467 </provider>
Pragati Jamdarkhana243a48a2015-01-23 14:40:29 +0530468
Pragnya Paramita99b4e042015-04-16 17:36:52 +0530469 <activity
470 android:name=".transaction.MmsNoConfirmationSendActivity"
471 android:label="@string/plugger"
472 android:enabled="@bool/enablePlugger"
473 android:icon="@drawable/icon_of_plugger">
474 <intent-filter android:priority="@string/plugger_priority">
475 <action android:name="android.intent.action.SEND" />
476 <category android:name="android.intent.category.DEFAULT" />
477 <data android:mimeType="image/*" />
478 <data android:mimeType="video/*" />
479 <data android:mimeType="vnd.android/mms" />
Pragati Jamdarkhana243a48a2015-01-23 14:40:29 +0530480 </intent-filter>
481 </activity>
Ruijie Baibd5a9a72016-04-07 19:32:58 +0800482 <activity android:name=".ui.PlayVideoOrPicActivity"
zhibinw5803ce62016-09-28 16:18:05 +0800483 android:screenOrientation="portrait"
484 android:theme="@style/MmsNewStyleTheme">
Ruijie Baibd5a9a72016-04-07 19:32:58 +0800485 </activity>
Pragati Jamdarkhana243a48a2015-01-23 14:40:29 +0530486 <service android:name="com.android.mms.transaction.MmsNoConfirmationSendService">
487 <intent-filter>
488 <action android:name="com.android.mms.transaction.MmsNoConfirmationSendService"/>
489 </intent-filter>
490 </service>
491
Ruijie Baibd5a9a72016-04-07 19:32:58 +0800492 <receiver
Ruijie Bai5e7a9952016-05-24 16:48:11 +0800493 android:name=".ui.NotificationActionHandleReceiver" >
Ruijie Baibd5a9a72016-04-07 19:32:58 +0800494 <intent-filter>
Ruijie Bai5e7a9952016-05-24 16:48:11 +0800495 <action android:name="org.codeaurora.intent.action.MARK_AS_READ" />
496 <action android:name="org.codeaurora.intent.action.DOWNLOAD" />
Ruijie Baibd5a9a72016-04-07 19:32:58 +0800497 </intent-filter>
498 </receiver>
499
500 <activity
501 android:name=".ui.NotificationQuickReplyActivity"
502 android:theme="@style/QuickReplyTheme"
503 android:exported="true"
504 android:excludeFromRecents="true"
505 android:configChanges="orientation|screenSize"
506 android:launchMode="singleTop"
507 android:taskAffinity="" >
508 </activity>
Zhibin Wangd571d4f2016-06-13 19:01:00 -0700509 <activity
510 android:name=".ui.PermissionGuardActivity"
511 android:screenOrientation="portrait"
512 android:configChanges="orientation|screenSize|keyboardHidden">
513 </activity>
xiaohuinf858b102016-07-28 17:18:10 +0800514 <activity
515 android:name=".ui.SearchConversationActivity"
516 android:theme="@style/NoActionBar">
517 </activity>
xiaoxu71d79a02018-07-18 10:17:14 +0800518
519 <provider
xiaoxue9d5c842019-11-13 09:31:56 +0800520 android:name="androidx.core.content.FileProvider"
xiaoxu71d79a02018-07-18 10:17:14 +0800521 android:authorities="com.android.mms.fileProvider"
522 android:exported="false"
523 android:grantUriPermissions="true" >
524 <meta-data
525 android:name="android.support.FILE_PROVIDER_PATHS"
526 android:resource="@xml/file_paths" />
527 </provider>
The Android Open Source Project72735c62009-03-03 19:32:28 -0800528 </application>
529</manifest>