1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright 2025 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16 --> 17<manifest xmlns:android="http://schemas.android.com/apk/res/android"> 18 <application> 19 <!--TODO(b/395589225): Provide platform implementation service based on API level--> 20 <service 21 android:name="androidx.appfunctions.ExtensionAppFunctionService" 22 android:permission="android.permission.BIND_APP_FUNCTION_SERVICE" 23 android:exported="true"> 24 <!-- XML file property for Legacy AppSearch Indexer.--> 25 <property 26 android:name="android.app.appfunctions" 27 android:value="app_functions.xml" /> 28 <!-- XSD & XML file properties for Dynamic AppSearch Indexer.--> 29 <property 30 android:name="android.app.appfunctions.schema" 31 android:value="app_functions_schema.xsd" /> 32 <property 33 android:name="android.app.appfunctions.v2" 34 android:value="app_functions_v2.xml" /> 35 <!--TODO: Renable this after resolve test conflict --> 36 <intent-filter> 37 <action android:name="android.app.appfunctions.AppFunctionService"/> 38 </intent-filter> 39 </service> 40 </application> 41</manifest> 42