blob: 45e557c0033338d9d3f16111de0e080439465195 [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" />
25
Svet Ganovc683da62016-01-29 19:05:31 -080026 <application android:label="@string/app_name"
Jeff Sharkey8a372a02016-03-16 16:25:45 -060027 android:defaultToDeviceProtectedStorage="true"
28 android:directBootAware="true">
Svet Ganovc683da62016-01-29 19:05:31 -080029
Daniel Nishicf9d19e2017-01-23 14:33:42 -080030 <service android:name=".storage.CacheQuotaServiceImpl"
31 android:permission="android.permission.BIND_CACHE_QUOTA_SERVICE">
32 <intent-filter>
33 <action android:name="android.app.usage.CacheQuotaService" />
34 </intent-filter>
35 </service>
36
Kang Li61cf4d12017-04-13 09:17:07 -070037 <service android:name=".resolver.LRResolverRankerService"
38 android:permission="android.permission.BIND_RESOLVER_RANKER_SERVICE"
39 android:priority="-1" >
40 <intent-filter>
41 <action android:name="android.service.resolver.ResolverRankerService" />
42 </intent-filter>
43 </service>
44
Julia Reynoldsf8c53672017-10-04 16:09:29 -040045 <service android:name=".notification.Assistant"
46 android:label="@string/notification_assistant"
47 android:permission="android.permission.BIND_NOTIFICATION_ASSISTANT_SERVICE"
48 android:exported="true">
49 <intent-filter>
50 <action android:name="android.service.notification.NotificationAssistantService" />
51 </intent-filter>
52 </service>
53
Felipe Lemebc055b02018-01-05 17:04:10 -080054 <service android:name=".autofill.AutofillFieldClassificationServiceImpl"
55 android:permission="android.permission.BIND_AUTOFILL_FIELD_CLASSIFICATION_SERVICE">
56 <intent-filter>
57 <action android:name="android.service.autofill.AutofillFieldClassificationService" />
58 </intent-filter>
Felipe Lemee4ac7402018-01-16 19:37:00 -080059 <meta-data
60 android:name="android.autofill.field_classification.default_algorithm"
61 android:resource="@string/autofill_field_classification_default_algorithm" />
62 <meta-data
63 android:name="android.autofill.field_classification.available_algorithms"
64 android:resource="@array/autofill_field_classification_available_algorithms" />
Felipe Lemebc055b02018-01-05 17:04:10 -080065 </service>
66
Svet Ganovc683da62016-01-29 19:05:31 -080067 <library android:name="android.ext.services"/>
Svet Ganovc683da62016-01-29 19:05:31 -080068 </application>
69
70</manifest>