Svet Ganov | c683da6 | 2016-01-29 19:05:31 -0800 | [diff] [blame] | 1 | <?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 Wren | 0efdb88 | 2016-03-01 17:17:47 -0500 | [diff] [blame] | 18 | xmlns:androidprv="http://schemas.android.com/apk/prv/res/android" |
Svet Ganov | c683da6 | 2016-01-29 19:05:31 -0800 | [diff] [blame] | 19 | package="android.ext.services" |
| 20 | android:versionCode="1" |
| 21 | android:versionName="1" |
| 22 | coreApp="true"> |
| 23 | |
Kang Li | 61cf4d1 | 2017-04-13 09:17:07 -0700 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.PROVIDE_RESOLVER_RANKER_SERVICE" /> |
| 25 | |
Svet Ganov | c683da6 | 2016-01-29 19:05:31 -0800 | [diff] [blame] | 26 | <application android:label="@string/app_name" |
Jeff Sharkey | 8a372a0 | 2016-03-16 16:25:45 -0600 | [diff] [blame] | 27 | android:defaultToDeviceProtectedStorage="true" |
| 28 | android:directBootAware="true"> |
Svet Ganov | c683da6 | 2016-01-29 19:05:31 -0800 | [diff] [blame] | 29 | |
Daniel Nishi | cf9d19e | 2017-01-23 14:33:42 -0800 | [diff] [blame] | 30 | <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 Li | 61cf4d1 | 2017-04-13 09:17:07 -0700 | [diff] [blame] | 37 | <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 Reynolds | f8c5367 | 2017-10-04 16:09:29 -0400 | [diff] [blame] | 45 | <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 | |
Svet Ganov | c683da6 | 2016-01-29 19:05:31 -0800 | [diff] [blame] | 54 | <library android:name="android.ext.services"/> |
Svet Ganov | c683da6 | 2016-01-29 19:05:31 -0800 | [diff] [blame] | 55 | </application> |
| 56 | |
| 57 | </manifest> |