blob: dfee08095bc9515499bf95aeef57bba037611163 [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
24 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
25 <application
26 android:process="com.android.phone"
27 android:persistent="true">
28
Sooraj Sasindrane4d3c3c2019-05-24 20:55:08 -070029 <receiver android:name="ONSAutoBoot"
30 android:directBootAware="true">
Sooraj Sasindran45232892018-09-30 00:15:24 -070031 <intent-filter>
Sooraj Sasindrane4d3c3c2019-05-24 20:55:08 -070032 <action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
Sooraj Sasindran45232892018-09-30 00:15:24 -070033 </intent-filter>
34 </receiver>
35
Sooraj Sasindran653edbd2019-01-08 13:17:29 -080036 <service android:name=".OpportunisticNetworkService"
Sooraj Sasindran45232892018-09-30 00:15:24 -070037 android:enabled="true"
Sooraj Sasindran5a852872020-06-04 14:08:28 -070038 android:exported="false"
Sooraj Sasindranef15e502020-02-10 13:21:24 -080039 android:directBootAware="true"
40 android:singleUser="true" />
Sooraj Sasindran45232892018-09-30 00:15:24 -070041
42 </application>
43</manifest>