Ashwini Oruganti cde3954b70 CtsShim: Add an exported flag in manifest
With b/150232615, we will need an explicit value set for the exported
flag when intent filters are present, as the default behavior is
changing for S+. This change adds the value reflecting the previous
default to the manifest.

Bug: 150232615
Test: TH
Change-Id: Ieab993508f18c148ca771df7faf7bbc845f52ad8
2020-03-10 16:02:27 -07:00

181 lines
7.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2016 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- Manifest for the privileged CTS shim -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.android.cts.priv.ctsshim" >
<uses-sdk android:minSdkVersion="24"
android:targetSdkVersion="28" />
<restrict-update
android:hash="__HASH__" />
<application
android:hasCode="false"
android:multiArch="true"
tools:ignore="AllowBackup,MissingApplicationIcon" >
<!-- These activities don't actually exist; define them just to test the filters !-->
<!-- install test; [some] high priority filters granted -->
<activity android:name=".InstallPriority"
android:exported="true">
<!-- normal actions; priority will be granted -->
<intent-filter android:priority="100">
<action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.INFO" />
</intent-filter>
<!-- protected actions; priority will be denied -->
<intent-filter android:priority="100">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<intent-filter android:priority="100">
<action android:name="android.intent.action.SEND" />
</intent-filter>
<intent-filter android:priority="100">
<action android:name="android.intent.action.SEND_MULTIPLE" />
</intent-filter>
<intent-filter android:priority="100">
<action android:name="android.intent.action.SENDTO" />
</intent-filter>
</activity>
<!-- upgrade test; single, equivalent filter -->
<activity android:name=".UpgradeMatch"
android:exported="true">
<intent-filter android:priority="100">
<action android:name="com.android.cts.action.MATCH" />
<category android:name="android.intent.category.INFO" />
</intent-filter>
</activity>
<!-- upgrade test; multiple, equivalent filters -->
<activity android:name=".UpgradeMatchMultiple"
android:exported="true">
<intent-filter android:priority="100">
<action android:name="com.android.cts.action.MATCH_MULTIPLE" />
<category android:name="android.intent.category.INFO" />
</intent-filter>
<intent-filter android:priority="150">
<action android:name="com.android.cts.action.MATCH_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="www.google.com" android:port="80" />
<data android:host="www.google.com" android:port="8080" />
<data android:host="goo.gl" android:port="443" />
</intent-filter>
</activity>
<!-- upgrade test; lower priority -->
<activity android:name=".UpgradeLowerPriority"
android:exported="true">
<intent-filter android:priority="100">
<action android:name="com.android.cts.action.LOWER_PRIORITY" />
<category android:name="android.intent.category.INFO" />
</intent-filter>
</activity>
<!-- upgrade test; action subset -->
<activity android:name=".UpgradeActionSubset"
android:exported="true">
<intent-filter android:priority="100">
<action android:name="com.android.cts.action.ACTION_SUB" />
<action android:name="com.android.cts.action.ACTION_SUB_2" />
<action android:name="com.android.cts.action.ACTION_SUB_3" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<!-- upgrade test; category subset -->
<activity android:name=".UpgradeCategorySubset"
android:exported="true">
<intent-filter android:priority="100">
<action android:name="com.android.cts.action.CATEGORY_SUB" />
<category android:name="android.intent.category.INFO" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<!-- upgrade test; scheme subset -->
<activity android:name=".UpgradeSchemeSubset"
android:exported="true">
<intent-filter android:priority="100">
<action android:name="com.android.cts.action.SCHEME_SUB" />
<data android:scheme="content" />
<data android:scheme="flubber" />
<data android:scheme="zoodle" />
</intent-filter>
</activity>
<!-- upgrade test; authority subset -->
<activity android:name=".UpgradeAuthoritySubset"
android:exported="true">
<intent-filter android:priority="100">
<action android:name="com.android.cts.action.AUTHORITY_SUB" />
<data android:host="www.google.com" android:port="80" />
<data android:host="www.google.com" android:port="8080" />
<data android:host="mail.google.com" android:port="80" />
<data android:host="goo.gl" android:port="443" />
</intent-filter>
</activity>
<!-- upgrade test; new action -->
<activity android:name=".UpgradeNewAction"
android:exported="true">
<intent-filter android:priority="100">
<action android:name="com.android.cts.action.NEW_ACTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<!-- upgrade test; new category -->
<activity android:name=".UpgradeNewCategory"
android:exported="true">
<intent-filter android:priority="100">
<action android:name="com.android.cts.action.NEW_CATEGORY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<!-- upgrade test; new scheme -->
<activity android:name=".UpgradeNewScheme"
android:exported="true">
<intent-filter android:priority="100">
<action android:name="com.android.cts.action.NEW_SCHEME" />
<data android:scheme="content" />
</intent-filter>
</activity>
<!-- upgrade test; new authority -->
<activity android:name=".UpgradeNewAuthority"
android:exported="true">
<intent-filter android:priority="100">
<action android:name="com.android.cts.action.NEW_AUTHORITY" />
<data android:host="www.google.com" android:port="80" />
</intent-filter>
</activity>
</application>
</manifest>