blob: fb2346f2ef9dab95b526d934e551796c7fb07ed5 [file] [log] [blame]
Sooraj Sasindran45232892018-09-30 00:15:24 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2018 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
Sooraj Sasindran653edbd2019-01-08 13:17:29 -080019 package="com.android.ons"
Sooraj Sasindran45232892018-09-30 00:15:24 -070020 coreApp="true"
21 android:process="com.android.phone"
22 android:sharedUserId="android.uid.phone">
23
Avinash Malipatil86296542022-05-25 10:10:22 +000024 <protected-broadcast android:name="com.android.ons.action.ESIM_DOWNLOAD" />
25 <protected-broadcast android:name="com.android.ons.action.ESIM_CONFIG" />
Avinash Malipatild4ef3682022-01-04 14:50:30 +000026
Sooraj Sasindran45232892018-09-30 00:15:24 -070027 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Avinash Malipatil1575dbb2022-04-08 08:06:17 +000028 <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
Sooraj Sasindran45232892018-09-30 00:15:24 -070029 <application
30 android:process="com.android.phone"
31 android:persistent="true">
32
Sooraj Sasindrane4d3c3c2019-05-24 20:55:08 -070033 <receiver android:name="ONSAutoBoot"
Ashwini Oruganti038a94c2020-03-24 14:52:02 -070034 android:exported="true"
Sooraj Sasindrane4d3c3c2019-05-24 20:55:08 -070035 android:directBootAware="true">
Sooraj Sasindran45232892018-09-30 00:15:24 -070036 <intent-filter>
Sooraj Sasindrane4d3c3c2019-05-24 20:55:08 -070037 <action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
Sooraj Sasindran45232892018-09-30 00:15:24 -070038 </intent-filter>
39 </receiver>
40
Sooraj Sasindran653edbd2019-01-08 13:17:29 -080041 <service android:name=".OpportunisticNetworkService"
Sooraj Sasindran45232892018-09-30 00:15:24 -070042 android:enabled="true"
Sooraj Sasindran5a852872020-06-04 14:08:28 -070043 android:exported="false"
Sooraj Sasindranef15e502020-02-10 13:21:24 -080044 android:directBootAware="true"
45 android:singleUser="true" />
Sooraj Sasindran45232892018-09-30 00:15:24 -070046
Avinash Malipatil30f59fd2021-12-17 06:43:19 +000047 <receiver android:name=".ONSProfileResultReceiver"
48 android:enabled="true"
49 android:exported="true">
50 <intent-filter>
51 <action android:name="android.telephony.action.MULTI_SIM_CONFIG_CHANGED"/>
52 </intent-filter>
Avinash Malipatil0a89baa2021-11-09 09:40:21 +000053 <intent-filter>
Avinash Malipatilc6e04fb2022-02-19 03:14:45 +000054 <action android:name="com.android.ons.action.ESIM_DOWNLOAD"/>
55 </intent-filter>
56 <intent-filter>
57 <action android:name="com.android.ons.action.ESIM_CONFIG"/>
Avinash Malipatil0a89baa2021-11-09 09:40:21 +000058 </intent-filter>
Avinash Malipatilda847742022-04-27 04:10:07 +000059 <intent-filter>
60 <action android:name="android.telephony.action.CARRIER_CONFIG_CHANGED"/>
61 </intent-filter>
Avinash Malipatil30f59fd2021-12-17 06:43:19 +000062 </receiver>
Sooraj Sasindran45232892018-09-30 00:15:24 -070063 </application>
64</manifest>