Home | History | Annotate | Download | only in CellBroadcastReceiver
      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     <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
     32 
     33     <application android:name="CellBroadcastReceiverApp"
     34             android:label="@string/app_label"
     35             android:icon="@mipmap/ic_launcher_cell_broadcast">
     36 
     37         <service android:name="CellBroadcastAlertAudio"
     38                  android:exported="false" />
     39 
     40         <service android:name="CellBroadcastAlertService"
     41                  android:exported="false" />
     42 
     43         <service android:name="CellBroadcastConfigService"
     44                  android:exported="false" />
     45 
     46         <service android:name="CellBroadcastAlertReminder"
     47                  android:exported="false" />
     48 
     49         <provider android:name="CellBroadcastContentProvider"
     50                   android:authorities="cellbroadcasts"
     51                   android:readPermission="android.permission.READ_CELL_BROADCASTS" />
     52 
     53         <activity android:name="CellBroadcastListActivity"
     54                   android:label="@string/app_label"
     55                   android:configChanges="orientation|keyboardHidden"
     56                   android:launchMode="singleTask">
     57             <intent-filter>
     58                 <action android:name="android.intent.action.MAIN" />
     59 <!-- Uncomment this category to show the Cell Broadcasts launcher icon.
     60      Otherwise, set "config_cellBroadcastAppLinks" to true in a config.xml overlay
     61      to add links to Cell Broadcast activities via Settings and MMS menu items.
     62                 <category android:name="android.intent.category.LAUNCHER" />
     63  -->
     64                 <category android:name="android.intent.category.DEFAULT" />
     65             </intent-filter>
     66             <intent-filter>
     67                 <action android:name="android.cellbroadcastreceiver.UPDATE_LIST_VIEW" />
     68                 <category android:name="android.intent.category.DEFAULT" />
     69             </intent-filter>
     70         </activity>
     71 
     72         <!-- Settings opened by ListActivity menu, Settings app link or opt-out dialog. -->
     73         <activity android:name="CellBroadcastSettings"
     74                   android:label="@string/sms_cb_settings"
     75                   android:launchMode="singleTask"
     76                   android:exported="true" />
     77 
     78         <activity android:name="CellBroadcastAlertDialog"
     79                   android:theme="@android:style/Theme.Holo.Dialog"
     80                   android:launchMode="singleTask"
     81                   android:exported="false"
     82                   android:configChanges="orientation|keyboardHidden|keyboard|navigation" />
     83 
     84         <!-- Full-screen version of CellBroadcastAlertDialog to display alerts over lock screen. -->
     85         <activity android:name="CellBroadcastAlertFullScreen"
     86                   android:excludeFromRecents="true"
     87                   android:theme="@style/AlertFullScreenTheme"
     88                   android:launchMode="singleTask"
     89                   android:exported="false"
     90                   android:configChanges="orientation|keyboardHidden|keyboard|navigation" />
     91 
     92         <!-- Container activity for CMAS opt-in/opt-out dialog. -->
     93         <activity android:name="CellBroadcastOptOutActivity"
     94                   android:exported="false" />
     95 
     96         <!-- Require sender permissions to prevent SMS spoofing -->
     97         <receiver android:name="PrivilegedCellBroadcastReceiver"
     98             android:permission="android.permission.BROADCAST_SMS">
     99             <intent-filter>
    100                 <action android:name="android.provider.Telephony.SMS_EMERGENCY_CB_RECEIVED" />
    101             </intent-filter>
    102 
    103             <intent-filter>
    104                 <action android:name="android.provider.Telephony.SMS_CB_RECEIVED" />
    105             </intent-filter>
    106 
    107             <intent-filter>
    108                 <action android:name="android.provider.Telephony.SMS_SERVICE_CATEGORY_PROGRAM_DATA_RECEIVED" />
    109             </intent-filter>
    110         </receiver>
    111 
    112         <!-- Require sender permission for querying latest area info broadcast -->
    113         <receiver android:name="PrivilegedCellBroadcastReceiver"
    114             android:permission="android.permission.READ_PHONE_STATE">
    115             <intent-filter>
    116                  <action android:name="android.cellbroadcastreceiver.GET_LATEST_CB_AREA_INFO" />
    117             </intent-filter>
    118         </receiver>
    119 
    120         <receiver android:name="CellBroadcastReceiver">
    121             <intent-filter>
    122                  <action android:name="android.intent.action.BOOT_COMPLETED" />
    123             </intent-filter>
    124 
    125             <intent-filter>
    126                  <action android:name="android.intent.action.AIRPLANE_MODE" />
    127             </intent-filter>
    128         </receiver>
    129 
    130     </application>
    131 </manifest>
    132