Todd Kennedy | 5585dd9 | 2016-03-29 13:07:01 -0700 | [diff] [blame] | 1 | <?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 Kennedy | 20047d7 | 2016-04-20 14:07:07 -0700 | [diff] [blame] | 19 | xmlns:tools="http://schemas.android.com/tools" |
Todd Kennedy | 51e458e | 2016-06-03 10:16:12 -0700 | [diff] [blame] | 20 | package="com.android.cts.ctsshim" > |
| 21 | |
| 22 | <uses-sdk android:minSdkVersion="24" |
Todd Kennedy | b0103b5 | 2019-03-01 13:56:47 -0800 | [diff] [blame] | 23 | android:targetSdkVersion="28" /> |
Todd Kennedy | 20047d7 | 2016-04-20 14:07:07 -0700 | [diff] [blame] | 24 | |
Todd Kennedy | 0d0b59c | 2016-06-14 12:35:39 -0700 | [diff] [blame] | 25 | <restrict-update |
| 26 | android:hash="__CAN_NOT_BE_UPDATED__" /> |
| 27 | |
Todd Kennedy | 20047d7 | 2016-04-20 14:07:07 -0700 | [diff] [blame] | 28 | <application |
| 29 | android:hasCode="false" |
| 30 | tools:ignore="AllowBackup,MissingApplicationIcon" > |
Todd Kennedy | 5585dd9 | 2016-03-29 13:07:01 -0700 | [diff] [blame] | 31 | |
| 32 | <!-- These activities don't actually exist; define them just to test the filters !--> |
| 33 | |
| 34 | <!-- install test; high priority filter DENIED --> |
Ashwini Oruganti | cde3954 | 2020-03-10 16:02:27 -0700 | [diff] [blame] | 35 | <activity android:name=".InstallPriority" |
| 36 | android:exported="true"> |
Todd Kennedy | 5585dd9 | 2016-03-29 13:07:01 -0700 | [diff] [blame] | 37 | <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 Guo | 749557e | 2021-03-03 17:54:47 +0800 | [diff] [blame] | 56 | <!-- The stub shared library for package visibility test --> |
| 57 | <library android:name="com.android.cts.ctsshim.shared_library" /> |
| 58 | |
Todd Kennedy | 5585dd9 | 2016-03-29 13:07:01 -0700 | [diff] [blame] | 59 | </application> |
| 60 | </manifest> |
| 61 | |