1<?xml version="1.0" encoding="utf-8"?><!-- 2 ~ Copyright (C) 2024 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<manifest xmlns:android="http://schemas.android.com/apk/res/android" 17 package="foo.bar.cve358092445" 18 android:versionCode="2" 19 android:versionName="2.0"> 20 21 <application android:label="@string/app_name"> 22 23 <activity 24 android:name=".StubA11yTarget2" 25 android:exported="true" 26 android:label="foo.bar.cve358092445.StubA11yTarget2"> 27 <intent-filter> 28 <action android:name="android.intent.action.MAIN" /> 29 <category android:name="android.intent.category.ACCESSIBILITY_SHORTCUT_TARGET" /> 30 </intent-filter> 31 <meta-data 32 android:name="android.accessibilityshortcut.target" 33 android:resource="@xml/accessibility_short_target" /> 34 </activity> 35 <service 36 android:name=".StubA11yTarget" 37 android:exported="true" 38 android:label="foo.bar.cve358092445.StubA11yTarget" 39 android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> 40 <intent-filter> 41 <action android:name="android.accessibilityservice.AccessibilityService" /> 42 </intent-filter> 43 <meta-data 44 android:name="android.accessibilityservice" 45 android:resource="@xml/accessibility_service_config" /> 46 47 </service> 48 </application> 49 50</manifest>