blob: 75299c4ddfe764add519ae4f92fe655a187b2814 [file] [log] [blame]
Varun Goyale23d0932021-10-21 10:29:01 +05301<!--
Varun Praveen Goyala7a959f2022-07-06 04:12:06 +00002 Copyright 2022 The Android Open Source Project
Varun Goyale23d0932021-10-21 10:29:01 +05303
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 -->
Varun Praveen Goyala7a959f2022-07-06 04:12:06 +000016
Varun Goyale23d0932021-10-21 10:29:01 +053017<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:tools="http://schemas.android.com/tools"
Varun Praveen Goyala7a959f2022-07-06 04:12:06 +000019 package="android.security.cts.CVE_2021_0954"
Varun Goyale23d0932021-10-21 10:29:01 +053020 android:versionCode="1"
21 android:versionName="1.0">
Varun Goyale23d0932021-10-21 10:29:01 +053022 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
Varun Praveen Goyala7a959f2022-07-06 04:12:06 +000023 <application>
Varun Goyale23d0932021-10-21 10:29:01 +053024 <service android:name=".PocService"
25 android:enabled="true"
Varun Praveen Goyala7a959f2022-07-06 04:12:06 +000026 android:exported="true" />
Varun Goyale23d0932021-10-21 10:29:01 +053027 </application>
Varun Goyale23d0932021-10-21 10:29:01 +053028 <instrumentation
29 android:name="androidx.test.runner.AndroidJUnitRunner"
Varun Praveen Goyala7a959f2022-07-06 04:12:06 +000030 android:targetPackage="android.security.cts.CVE_2021_0954" />
Varun Goyale23d0932021-10-21 10:29:01 +053031</manifest>