1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2020 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 18<manifest xmlns:android="http://schemas.android.com/apk/res/android" 19 package="android.server.wm.jetpack" 20 android:targetSandboxVersion="2"> 21 22 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> 23 24 <application android:label="CtsWindowManagerJetpackTestCases"> 25 <uses-library android:name="android.test.runner" /> 26 <uses-library android:name="androidx.window.extensions" 27 android:required="false" /> 28 <uses-library android:name="androidx.window.sidecar" 29 android:required="false" /> 30 <activity android:name="android.server.wm.jetpack.utils.TestActivity" /> 31 <activity android:name="android.server.wm.jetpack.utils.TestConfigChangeHandlingActivity" 32 android:supportsPictureInPicture="true" 33 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|colorMode|density|touchscreen" 34 /> 35 <activity android:name="android.server.wm.jetpack.utils.TestGetWindowLayoutInfoActivity" /> 36 <activity android:name="android.server.wm.jetpack.utils.TestActivityWithId" 37 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|colorMode|density|touchscreen" 38 android:exported="true" 39 /> 40 <activity android:name="android.server.wm.jetpack.utils.TestActivityWithId2" 41 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|colorMode|density|touchscreen" 42 android:exported="true" 43 /> 44 <activity android:name="android.server.wm.jetpack.utils.TestActivityKnownEmbeddingCerts" 45 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|colorMode|density|touchscreen" 46 android:knownActivityEmbeddingCerts="6a8b96e278e58f62cfe3584022cec1d0527fcb85a9e5d2e1694eb0405be5b599" 47 android:exported="true" 48 /> 49 <activity android:name="android.server.wm.jetpack.utils.TestRearDisplayActivity" 50 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|colorMode|density|touchscreen" 51 android:exported="true" 52 /> 53 <!-- The provider properties must match the shared one defined in the util module. --> 54 <provider android:name="android.server.wm.lifecycle.EventLog" 55 android:authorities="android.server.wm.jetpack.logprovider" 56 android:exported="true"/> 57 </application> 58 59 <!-- self-instrumenting test package. --> 60 <instrumentation 61 android:name="androidx.test.runner.AndroidJUnitRunner" 62 android:label="CTS tests of Jetpack Window Manager" 63 android:targetPackage="android.server.wm.jetpack" > 64 </instrumentation> 65</manifest> 66