blob: 4d64df428baa29df6f778d38e133a1ca630dc85f [file] [log] [blame]
Keun young Parkf7b911b2012-10-24 18:18:03 -07001<?xml version="1.0" encoding="utf-8"?>
Eugene Susla89556982018-05-22 14:42:14 -07002<!-- Copyright (C) 2012 The Android Open Source Project
Keun young Parkf7b911b2012-10-24 18:18:03 -07003
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
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070018 package="android.taskswitching.appa"
19 android:targetSandboxVersion="2">
Keun young Parkf7b911b2012-10-24 18:18:03 -070020
21 <application>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070022 <uses-library android:name="android.test.runner"/>
Paul Duffinfda34ce2017-12-08 00:02:41 +000023
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070024 <activity android:name=".AppAActivity"
25 android:screenOrientation="portrait"
26 android:exported="true">
Stuart Scott86139112013-04-26 11:32:58 -070027
Eugene Susla89556982018-05-22 14:42:14 -070028 <intent-filter>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070029 <action android:name="android.intent.action.VIEW"/>
30 <category android:name="android.intent.category.DEFAULT"/>
31 <category android:name="android.intent.category.BROWSABLE"/>
32 <data android:scheme="https"/>
33 <data android:host="foo.com"/>
34 <data android:path="/appa"/>
Keun young Parkf7b911b2012-10-24 18:18:03 -070035 </intent-filter>
Eugene Susla89556982018-05-22 14:42:14 -070036
Keun young Parkf7b911b2012-10-24 18:18:03 -070037 </activity>
38 </application>
Stuart Scott86139112013-04-26 11:32:58 -070039
Brett Chabot244f0382019-02-15 13:02:34 -080040 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070041 android:targetPackage="android.taskswitching.appa"/>
Eugene Susla89556982018-05-22 14:42:14 -070042
Paul Duffinfda34ce2017-12-08 00:02:41 +000043</manifest>