AndroidManifest.xml revision 13f168870c11d7ab0e96bbe44d066c4d684f08fd
1<?xml version="1.0" encoding="utf-8" standalone="no"?>
2<!--
3 * Copyright (c) 2015, Motorola Mobility LLC
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *     - Redistributions of source code must retain the above copyright
9 *       notice, this list of conditions and the following disclaimer.
10 *     - Redistributions in binary form must reproduce the above copyright
11 *       notice, this list of conditions and the following disclaimer in the
12 *       documentation and/or other materials provided with the distribution.
13 *     - Neither the name of Motorola Mobility nor the
14 *       names of its contributors may be used to endorse or promote products
15 *       derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
19 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MOTOROLA MOBILITY LLC BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
27 * DAMAGE.
28-->
29
30<manifest xmlns:android="http://schemas.android.com/apk/res/android"
31    xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
32    package="com.android.service.ims.presence"
33    android:sharedUserId="android.uid.phone"
34    coreApp="true">
35
36    <uses-sdk android:minSdkVersion="19"/>
37
38    <protected-broadcast android:name="android.provider.rcs.eab.EAB_NEW_CONTACT_INSERTED" />
39    <protected-broadcast android:name="com.android.service.ims.presence.capability_polling_retry" />
40    <protected-broadcast android:name="com.android.service.ims.presence.periodical_capability_discovery" />
41
42    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
43    <uses-permission android:name="android.permission.BROADCAST_STICKY"/>
44    <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/>
45    <uses-permission android:name="android.permission.READ_CONTACTS"/>
46    <uses-permission android:name="android.permission.WRITE_CONTACTS"/>
47    <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
48    <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"/>
49    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
50    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
51    <uses-permission android:name="com.android.rcs.eab.permission.READ_WRITE_EAB"/>
52    <uses-permission android:name="android.permission.READ_PROFILE"/>
53    <uses-permission android:name="com.android.ims.rcs.permission.STATUS_CHANGED"/>
54    <uses-permission android:name="com.android.ims.permission.PRESENCE_ACCESS"/>
55
56    <application
57        android:label="@string/app_label"
58        android:singleUser="true"
59        android:process="com.android.ims.rcsservice">
60
61        <uses-library android:name="com.android.ims.rcsmanager"
62            android:required="true"/>
63
64        <service
65            android:name=".PollingService"
66            android:excludeFromRecents="true"
67            android:singleUser="true"
68            android:permission="com.android.ims.permission.PRESENCE_ACCESS">
69        </service>
70
71        <receiver android:name=".DeviceBoot" androidprv:systemUserOnly="true">
72            <intent-filter android:priority="103">
73                 <action android:name="com.android.ims.ACTION_PUBLISH_STATUS_CHANGED"/>
74                 <action android:name="android.intent.action.BOOT_COMPLETED"/>
75            </intent-filter>
76        </receiver>
77
78        <receiver android:name=".DeviceShutdown" androidprv:systemUserOnly="true">
79            <intent-filter>
80                 <action android:name="android.intent.action.ACTION_SHUTDOWN"/>
81            </intent-filter>
82        </receiver>
83
84        <receiver android:name=".AlarmBroadcastReceiver"
85            androidprv:systemUserOnly="true"
86            android:permission="com.android.ims.permission.PRESENCE_ACCESS">
87            <intent-filter>
88                <action android:name="com.android.service.ims.presence.periodical_capability_discovery"/>
89                <action android:name="com.android.service.ims.presence.capability_polling_retry"/>
90                <action android:name="android.provider.rcs.eab.EAB_NEW_CONTACT_INSERTED" />
91            </intent-filter>
92        </receiver>
93
94        <receiver android:name=".PresenceBroadcastReceiver"
95            androidprv:systemUserOnly="true"
96            android:permission="com.android.ims.permission.PRESENCE_ACCESS">
97             <intent-filter>
98                 <action android:name="com.android.ims.ACTION_PUBLISH_STATUS_CHANGED"/>
99             </intent-filter>
100        </receiver>
101
102        <service android:name=".PersistService"
103          android:exported="false"
104          android:permission="com.android.ims.permission.PRESENCE_ACCESS">
105            <intent-filter>
106                <action android:name="com.android.ims.ACTION_PRESENCE_CHANGED"/>
107            </intent-filter>
108        </service>
109
110        <service
111            android:name="com.android.service.ims.presence.EABService"
112            android:enabled="true">
113        </service>
114
115        <provider
116            android:name=".EABProvider"
117            android:permission="com.android.rcs.eab.permission.READ_WRITE_EAB"
118            android:exported="true"
119            android:enabled="true"
120            android:authorities="com.android.rcs.eab" />
121    </application>
122</manifest>
123