blob: 73bfd3010983a02745fc5d212cc581513cab75ea [file] [log] [blame]
Svet Ganovc683da62016-01-29 19:05:31 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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"
Chris Wren0efdb882016-03-01 17:17:47 -050018 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
Svet Ganovc683da62016-01-29 19:05:31 -080019 package="android.ext.services"
Akshay296acdf2019-04-04 14:41:41 -070020 android:versionCode="210000000"
Svet Ganovc683da62016-01-29 19:05:31 -080021 android:versionName="1"
22 coreApp="true">
23
Kang Li61cf4d12017-04-13 09:17:07 -070024 <uses-permission android:name="android.permission.PROVIDE_RESOLVER_RANKER_SERVICE" />
Stanislav Zholnin6274a3a2019-01-28 15:53:23 +000025 <uses-permission android:name="android.permission.READ_DEVICE_CONFIG" />
Kang Li61cf4d12017-04-13 09:17:07 -070026
Nadia Benbernou1ee91a32019-01-28 11:26:46 -050027 <uses-permission android:name="android.permission.MONITOR_DEFAULT_SMS_PACKAGE" />
Julia Reynoldsd0ceefa2019-03-03 16:10:52 -050028 <uses-permission android:name="android.permission.REQUEST_NOTIFICATION_ASSISTANT_SERVICE" />
Zimuzoe680d602019-03-26 13:04:13 +000029 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Nadia Benbernou1ee91a32019-01-28 11:26:46 -050030
Jeff Hamilton1d4bfed2019-03-06 22:47:42 -050031 <uses-sdk
32 android:targetSdkVersion="28"
33 />
34
Svet Ganovc683da62016-01-29 19:05:31 -080035 <application android:label="@string/app_name"
Jeff Sharkey8a372a02016-03-16 16:25:45 -060036 android:defaultToDeviceProtectedStorage="true"
37 android:directBootAware="true">
Svet Ganovc683da62016-01-29 19:05:31 -080038
Daniel Nishicf9d19e2017-01-23 14:33:42 -080039 <service android:name=".storage.CacheQuotaServiceImpl"
40 android:permission="android.permission.BIND_CACHE_QUOTA_SERVICE">
41 <intent-filter>
42 <action android:name="android.app.usage.CacheQuotaService" />
43 </intent-filter>
44 </service>
45
Kang Li61cf4d12017-04-13 09:17:07 -070046 <service android:name=".resolver.LRResolverRankerService"
Kang Li08dcc0a2018-02-13 16:33:38 -080047 android:permission="android.permission.BIND_RESOLVER_RANKER_SERVICE">
48 <intent-filter android:priority="-1">
Kang Li61cf4d12017-04-13 09:17:07 -070049 <action android:name="android.service.resolver.ResolverRankerService" />
50 </intent-filter>
51 </service>
52
Julia Reynoldsf8c53672017-10-04 16:09:29 -040053 <service android:name=".notification.Assistant"
54 android:label="@string/notification_assistant"
55 android:permission="android.permission.BIND_NOTIFICATION_ASSISTANT_SERVICE"
56 android:exported="true">
57 <intent-filter>
58 <action android:name="android.service.notification.NotificationAssistantService" />
59 </intent-filter>
60 </service>
61
Felipe Lemebc055b02018-01-05 17:04:10 -080062 <service android:name=".autofill.AutofillFieldClassificationServiceImpl"
63 android:permission="android.permission.BIND_AUTOFILL_FIELD_CLASSIFICATION_SERVICE">
64 <intent-filter>
65 <action android:name="android.service.autofill.AutofillFieldClassificationService" />
66 </intent-filter>
Ryan Mitchell2fe035b2018-08-21 17:03:04 -070067 <meta-data
68 android:name="android.autofill.field_classification.default_algorithm"
69 android:resource="@string/autofill_field_classification_default_algorithm" />
70 <meta-data
71 android:name="android.autofill.field_classification.available_algorithms"
72 android:resource="@array/autofill_field_classification_available_algorithms" />
Felipe Lemebc055b02018-01-05 17:04:10 -080073 </service>
74
Hongming Jin9e924382018-11-27 16:12:06 -080075 <service android:name=".sms.FinancialSmsServiceImpl"
76 android:permission="android.permission.BIND_FINANCIAL_SMS_SERVICE">
77 <intent-filter>
78 <action android:name="android.service.sms.action.FINANCIAL_SERVICE_INTENT" />
79 </intent-filter>
80 </service>
81
Zimuzoe680d602019-03-26 13:04:13 +000082 <service android:name=".watchdog.ExplicitHealthCheckServiceImpl"
83 android:permission="android.permission.BIND_EXPLICIT_HEALTH_CHECK_SERVICE">
84 <intent-filter>
85 <action android:name="android.service.watchdog.ExplicitHealthCheckService" />
86 </intent-filter>
87 </service>
88
Tony Mak9e0dfdc2019-03-04 15:08:45 +000089 <activity android:name=".notification.CopyCodeActivity"
90 android:exported="false"
91 android:theme="@android:style/Theme.NoDisplay"/>
92
Svet Ganovc683da62016-01-29 19:05:31 -080093 <library android:name="android.ext.services"/>
Svet Ganovc683da62016-01-29 19:05:31 -080094 </application>
95
96</manifest>