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" 18 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android" 19 package="android.ext.services" 20 android:versionCode="309999900" 21 android:versionName="2019-09" 22 coreApp="true"> 23 24 <uses-permission android:name="android.permission.PROVIDE_RESOLVER_RANKER_SERVICE" /> 25 <uses-permission android:name="android.permission.READ_DEVICE_CONFIG" /> 26 27 <uses-permission android:name="android.permission.MONITOR_DEFAULT_SMS_PACKAGE" /> 28 <uses-permission android:name="android.permission.REQUEST_NOTIFICATION_ASSISTANT_SERVICE" /> 29 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 30 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> 31 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> 32 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" /> 33 34 <uses-sdk 35 android:targetSdkVersion="30" 36 /> 37 38 <application android:label="@string/app_name" 39 android:forceQueryable="true" 40 android:directBootAware="true" 41 android:supportsRtl="true"> 42 43 <service android:name=".storage.CacheQuotaServiceImpl" 44 android:exported="true" 45 android:permission="android.permission.BIND_CACHE_QUOTA_SERVICE"> 46 <intent-filter> 47 <action android:name="android.app.usage.CacheQuotaService" /> 48 </intent-filter> 49 </service> 50 51 <service android:name=".resolver.LRResolverRankerService" 52 android:exported="true" 53 android:permission="android.permission.BIND_RESOLVER_RANKER_SERVICE"> 54 <intent-filter android:priority="-1"> 55 <action android:name="android.service.resolver.ResolverRankerService" /> 56 </intent-filter> 57 </service> 58 59 <service android:name=".notification.Assistant" 60 android:label="@string/notification_assistant" 61 android:permission="android.permission.BIND_NOTIFICATION_ASSISTANT_SERVICE" 62 android:exported="true"> 63 <intent-filter> 64 <action android:name="android.service.notification.NotificationAssistantService" /> 65 </intent-filter> 66 </service> 67 68 <service android:name=".autofill.AutofillFieldClassificationServiceImpl" 69 android:exported="true" 70 android:permission="android.permission.BIND_AUTOFILL_FIELD_CLASSIFICATION_SERVICE"> 71 <intent-filter> 72 <action android:name="android.service.autofill.AutofillFieldClassificationService" /> 73 </intent-filter> 74 <meta-data 75 android:name="android.autofill.field_classification.default_algorithm" 76 android:resource="@string/autofill_field_classification_default_algorithm" /> 77 <meta-data 78 android:name="android.autofill.field_classification.available_algorithms" 79 android:resource="@array/autofill_field_classification_available_algorithms" /> 80 </service> 81 82 <service android:name=".watchdog.ExplicitHealthCheckServiceImpl" 83 android:exported="true" 84 android:permission="android.permission.BIND_EXPLICIT_HEALTH_CHECK_SERVICE"> 85 <intent-filter> 86 <action android:name="android.service.watchdog.ExplicitHealthCheckService" /> 87 </intent-filter> 88 </service> 89 90 <activity android:name="com.android.textclassifier.notification.CopyCodeActivity" 91 android:exported="false" 92 android:theme="@android:style/Theme.NoDisplay"/> 93 94 <service 95 android:name="com.android.textclassifier.DefaultTextClassifierService" 96 android:exported="true" 97 android:permission="android.permission.BIND_TEXTCLASSIFIER_SERVICE"> 98 <intent-filter> 99 <action android:name="android.service.textclassifier.TextClassifierService"/> 100 </intent-filter> 101 </service> 102 103 <service android:name=".autofill.InlineSuggestionRenderServiceImpl" 104 android:exported="true" 105 android:permission="android.permission.BIND_INLINE_SUGGESTION_RENDER_SERVICE"> 106 <intent-filter> 107 <action android:name="android.service.autofill.InlineSuggestionRenderService" /> 108 </intent-filter> 109 </service> 110 111 <service android:name=".displayhash.DisplayHashingServiceImpl" 112 android:exported="true" 113 android:permission="android.permission.BIND_DISPLAY_HASHING_SERVICE"> 114 <intent-filter> 115 <action android:name="android.service.displayhash.DisplayHashingService" /> 116 </intent-filter> 117 </service> 118 119 </application> 120 121</manifest> 122