blob: b00c37f92baf8f1347ddaa65b0ce834cd6d6eb88 [file] [log] [blame]
Joseph Wen6a34bb22015-02-25 14:00:39 -05001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 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.statementservice"
19 android:versionCode="1"
20 android:versionName="1.0">
21
22 <uses-permission android:name="android.permission.INTERNET"/>
23 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
24 <uses-permission android:name="android.permission.INTENT_FILTER_VERIFICATION_AGENT"/>
Christopher Tate4e9ec492020-02-26 13:10:05 -080025 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
Joseph Wen6a34bb22015-02-25 14:00:39 -050026
27 <application
28 android:label="@string/service_name"
29 android:allowBackup="false">
Paul Duffin1f49e4e2017-07-24 15:46:40 +010030 <uses-library android:name="org.apache.http.legacy" />
Joseph Wen6a34bb22015-02-25 14:00:39 -050031 <service
32 android:name=".DirectStatementService"
33 android:exported="false">
34 <intent-filter>
35 <category android:name="android.intent.category.DEFAULT"/>
36 <action android:name="com.android.statementservice.aosp.service.CHECK_ACTION"/>
37 </intent-filter>
38 </service>
39
40 <receiver
41 android:name=".IntentFilterVerificationReceiver"
42 android:permission="android.permission.BIND_INTENT_FILTER_VERIFIER">
43 <!-- Set the priority 1 so newer implementation can have higher priority. -->
44 <intent-filter
45 android:priority="1">
46 <action android:name="android.intent.action.INTENT_FILTER_NEEDS_VERIFICATION"/>
47 <data android:mimeType="application/vnd.android.package-archive"/>
48 </intent-filter>
49 </receiver>
50
51 </application>
52
53</manifest>