blob: c7550e0ce68cc61f58ae57fc347627f6398216e6 [file] [log] [blame]
Todd Kennedye72d82e2016-04-19 13:49:22 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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 xmlns:tools="http://schemas.android.com/tools"
18 package="com.android.cts.norestart"
Todd Kennedyef23d4f2018-06-27 10:40:38 -070019 android:targetSandboxVersion="2"
Todd Kennedye72d82e2016-04-19 13:49:22 -070020 tools:ignore="MissingVersion" >
21
Todd Kennedye72d82e2016-04-19 13:49:22 -070022 <application
23 tools:ignore="AllowBackup,MissingApplicationIcon" >
24 <activity
25 android:name=".NoRestartActivity"
26 android:launchMode="singleTop" >
27 <intent-filter>
28 <action android:name="com.android.cts.norestart.START" />
29 <category android:name="android.intent.category.DEFAULT" />
30 </intent-filter>
31 <intent-filter>
Todd Kennedyef23d4f2018-06-27 10:40:38 -070032 <action android:name="android.intent.action.VIEW" />
33 <category android:name="android.intent.category.BROWSABLE" />
34 <category android:name="android.intent.category.DEFAULT" />
35 <data android:scheme="https" />
36 <data android:host="cts.android.com" />
37 <data android:path="/norestart" />
38 </intent-filter>
39 <intent-filter>
Todd Kennedye72d82e2016-04-19 13:49:22 -070040 <action android:name="android.intent.action.MAIN" />
41 <category android:name="android.intent.category.LAUNCHER" />
42 </intent-filter>
43 </activity>
44 </application>
45</manifest>