1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 /* 4 * Copyright (C) 2011 The Android Open Source Project 5 * 6 * Licensed under the Apache License, Version 2.0 (the "License"); 7 * you may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, software 13 * distributed under the License is distributed on an "AS IS" BASIS, 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 * See the License for the specific language governing permissions and 16 * limitations under the License. 17 */ 18 --> 19 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 20 package="com.android.cellbroadcastreceiver"> 21 22 <original-package android:name="com.android.cellbroadcastreceiver" /> 23 24 <uses-permission android:name="android.permission.RECEIVE_SMS" /> 25 <uses-permission android:name="android.permission.RECEIVE_EMERGENCY_BROADCAST" /> 26 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> 27 <uses-permission android:name="android.permission.READ_PHONE_STATE" /> 28 <uses-permission android:name="android.permission.WAKE_LOCK" /> 29 <uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> 30 <uses-permission android:name="android.permission.VIBRATE" /> 31 32 <application android:name="CellBroadcastReceiverApp" 33 android:label="@string/app_label" 34 android:icon="@drawable/ic_launcher_cbreceiver"> 35 36 <service android:name="CellBroadcastAlertAudio" 37 android:exported="false" /> 38 39 <service android:name="CellBroadcastAlertService" 40 android:exported="false" /> 41 42 <service android:name="CellBroadcastConfigService" 43 android:exported="false" /> 44 45 <service android:name="CellBroadcastDatabaseService" 46 android:exported="false" /> 47 48 <activity android:name="CellBroadcastListActivity" 49 android:label="@string/app_label" 50 android:configChanges="orientation|keyboardHidden" 51 android:launchMode="singleTop"> 52 <intent-filter> 53 <action android:name="android.intent.action.MAIN" /> 54 <category android:name="android.intent.category.LAUNCHER" /> 55 <category android:name="android.intent.category.DEFAULT" /> 56 </intent-filter> 57 </activity> 58 59 <activity android:name="CellBroadcastSettings" 60 android:label="@string/sms_cb_settings" 61 android:exported="true" /> 62 63 <!-- Require sender permissions to prevent SMS spoofing --> 64 <receiver android:name="PrivilegedCellBroadcastReceiver" 65 android:permission="android.permission.BROADCAST_SMS"> 66 <intent-filter> 67 <action android:name="android.provider.Telephony.SMS_EMERGENCY_CB_RECEIVED" /> 68 </intent-filter> 69 70 <intent-filter> 71 <action android:name="android.provider.Telephony.SMS_CB_RECEIVED" /> 72 </intent-filter> 73 </receiver> 74 75 <receiver android:name="CellBroadcastReceiver"> 76 <intent-filter> 77 <action android:name="android.intent.action.BOOT_COMPLETED" /> 78 </intent-filter> 79 80 <intent-filter> 81 <action android:name="android.intent.action.AIRPLANE_MODE" /> 82 </intent-filter> 83 </receiver> 84 85 </application> 86 </manifest> 87