blob: 1ffe56c0c76a2e97c73ea259cc33de1887e4aacd [file] [log] [blame]
Todd Kennedy5585dd92016-03-29 13:07:01 -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
17<!-- Manifest for the system CTS shim -->
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Todd Kennedy20047d72016-04-20 14:07:07 -070019 xmlns:tools="http://schemas.android.com/tools"
Todd Kennedy51e458e2016-06-03 10:16:12 -070020 package="com.android.cts.ctsshim" >
21
22 <uses-sdk android:minSdkVersion="24"
Todd Kennedyb0103b52019-03-01 13:56:47 -080023 android:targetSdkVersion="28" />
Todd Kennedy20047d72016-04-20 14:07:07 -070024
Todd Kennedy0d0b59c2016-06-14 12:35:39 -070025 <restrict-update
26 android:hash="__CAN_NOT_BE_UPDATED__" />
27
Todd Kennedy20047d72016-04-20 14:07:07 -070028 <application
29 android:hasCode="false"
30 tools:ignore="AllowBackup,MissingApplicationIcon" >
Todd Kennedy5585dd92016-03-29 13:07:01 -070031
32 <!-- These activities don't actually exist; define them just to test the filters !-->
33
34 <!-- install test; high priority filter DENIED -->
Ashwini Oruganticde39542020-03-10 16:02:27 -070035 <activity android:name=".InstallPriority"
36 android:exported="true">
Todd Kennedy5585dd92016-03-29 13:07:01 -070037 <intent-filter android:priority="100">
38 <action android:name="android.intent.action.SEARCH" />
39 <category android:name="android.intent.category.INFO" />
40 </intent-filter>
41 <intent-filter android:priority="100">
42 <action android:name="android.intent.action.VIEW" />
43 <category android:name="android.intent.category.BROWSABLE" />
44 </intent-filter>
45 <intent-filter android:priority="100">
46 <action android:name="android.intent.action.SEND" />
47 </intent-filter>
48 <intent-filter android:priority="100">
49 <action android:name="android.intent.action.SEND_MULTIPLE" />
50 </intent-filter>
51 <intent-filter android:priority="100">
52 <action android:name="android.intent.action.SENDTO" />
53 </intent-filter>
54 </activity>
55
Jackal Guo749557e2021-03-03 17:54:47 +080056 <!-- The stub shared library for package visibility test -->
57 <library android:name="com.android.cts.ctsshim.shared_library" />
58
Todd Kennedy5585dd92016-03-29 13:07:01 -070059 </application>
60</manifest>
61