blob: 8b251452e1d142642a96f44ff0bb115726edc29c [file] [log] [blame]
Max Birese24b7822020-12-03 14:49:58 -08001<!--
2 Copyright (C) 2020 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 package="com.android.remoteprovisioner">
19
20 <application
21 android:label="@string/app_name">
Max Bires0dbe39c2021-02-07 18:39:00 -080022 <receiver android:name=".BootReceiver"
23 android:exported="false">
Max Birese24b7822020-12-03 14:49:58 -080024 <intent-filter >
25 <action android:name="android.intent.action.BOOT_COMPLETED"/>
26 </intent-filter>
27 </receiver>
28 <service android:name="PeriodicProvisioner"
29 android:permission="android.permission.BIND_JOB_SERVICE"
30 android:exported="false">
31 </service>
Max Birescbd9fc02021-06-04 14:14:51 -070032 <service android:name="com.android.remoteprovisioner.service.GenerateRkpKeyService"
Max Biresc1ab1672021-03-02 23:35:12 -080033 android:exported="true">
34 <intent-filter>
Max Birescbd9fc02021-06-04 14:14:51 -070035 <action android:name="android.security.IGenerateRkpKeyService"/>
Max Biresc1ab1672021-03-02 23:35:12 -080036 </intent-filter>
37 </service>
Max Birese24b7822020-12-03 14:49:58 -080038 </application>
39
Max Bires6ea86ef2021-04-21 15:02:37 -070040 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
41 <uses-permission android:name="android.permission.INTERNET" />
Max Birese24b7822020-12-03 14:49:58 -080042 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
43
44</manifest>