• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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="1"
19    android:versionName="1.0">
20
21    <application android:label="@string/app_name">
22
23        <activity
24            android:name=".StubA11yTarget"
25            android:exported="true"
26            android:label="foo.bar.cve358092445.StubA11yTarget">
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
36        <service
37            android:name=".StubA11yTarget2"
38            android:exported="true"
39            android:label="foo.bar.cve358092445.StubA11yTarget2"
40            android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
41            <intent-filter>
42                <action android:name="android.accessibilityservice.AccessibilityService" />
43            </intent-filter>
44            <meta-data
45                android:name="android.accessibilityservice"
46                android:resource="@xml/accessibility_service_config" />
47
48        </service>
49    </application>
50
51</manifest>