blob: e47d53ca7692de40b19739fead5f0dd774623ffe [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"
20 android:versionCode="1"
21 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" />
Nadia Benbernou1ee91a32019-01-28 11:26:46 -050029
Jeff Hamilton1d4bfed2019-03-06 22:47:42 -050030 <uses-sdk
31 android:targetSdkVersion="28"
32 />
33
Svet Ganovc683da62016-01-29 19:05:31 -080034 <application android:label="@string/app_name"
Jeff Sharkey8a372a02016-03-16 16:25:45 -060035 android:defaultToDeviceProtectedStorage="true"
36 android:directBootAware="true">
Svet Ganovc683da62016-01-29 19:05:31 -080037
Daniel Nishicf9d19e2017-01-23 14:33:42 -080038 <service android:name=".storage.CacheQuotaServiceImpl"
39 android:permission="android.permission.BIND_CACHE_QUOTA_SERVICE">
40 <intent-filter>
41 <action android:name="android.app.usage.CacheQuotaService" />
42 </intent-filter>
43 </service>
44
Kang Li61cf4d12017-04-13 09:17:07 -070045 <service android:name=".resolver.LRResolverRankerService"
Kang Li08dcc0a2018-02-13 16:33:38 -080046 android:permission="android.permission.BIND_RESOLVER_RANKER_SERVICE">
47 <intent-filter android:priority="-1">
Kang Li61cf4d12017-04-13 09:17:07 -070048 <action android:name="android.service.resolver.ResolverRankerService" />
49 </intent-filter>
50 </service>
51
Julia Reynoldsf8c53672017-10-04 16:09:29 -040052 <service android:name=".notification.Assistant"
53 android:label="@string/notification_assistant"
54 android:permission="android.permission.BIND_NOTIFICATION_ASSISTANT_SERVICE"
55 android:exported="true">
56 <intent-filter>
57 <action android:name="android.service.notification.NotificationAssistantService" />
58 </intent-filter>
59 </service>
60
Felipe Lemebc055b02018-01-05 17:04:10 -080061 <service android:name=".autofill.AutofillFieldClassificationServiceImpl"
62 android:permission="android.permission.BIND_AUTOFILL_FIELD_CLASSIFICATION_SERVICE">
63 <intent-filter>
64 <action android:name="android.service.autofill.AutofillFieldClassificationService" />
65 </intent-filter>
Ryan Mitchell2fe035b2018-08-21 17:03:04 -070066 <meta-data
67 android:name="android.autofill.field_classification.default_algorithm"
68 android:resource="@string/autofill_field_classification_default_algorithm" />
69 <meta-data
70 android:name="android.autofill.field_classification.available_algorithms"
71 android:resource="@array/autofill_field_classification_available_algorithms" />
Felipe Lemebc055b02018-01-05 17:04:10 -080072 </service>
73
Hongming Jin9e924382018-11-27 16:12:06 -080074 <service android:name=".sms.FinancialSmsServiceImpl"
75 android:permission="android.permission.BIND_FINANCIAL_SMS_SERVICE">
76 <intent-filter>
77 <action android:name="android.service.sms.action.FINANCIAL_SERVICE_INTENT" />
78 </intent-filter>
79 </service>
80
Svet Ganovc683da62016-01-29 19:05:31 -080081 <library android:name="android.ext.services"/>
Svet Ganovc683da62016-01-29 19:05:31 -080082 </application>
83
84</manifest>