You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
5.9 KiB
141 lines
5.9 KiB
7 months ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!-- Copyright (C) 2018 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="android.appsecurity.cts.orderedactivity"
|
||
|
android:versionCode="10"
|
||
|
android:versionName="1.0"
|
||
|
android:targetSandboxVersion="2">
|
||
|
<application android:label="@string/app_name">
|
||
|
<!-- Activities used for queries -->
|
||
|
<activity android:name=".OrderActivity2"
|
||
|
android:exported="true">
|
||
|
<intent-filter android:order="2">
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"
|
||
|
android:pathPrefix="/cts/package"/>
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
<activity android:name=".OrderActivity1"
|
||
|
android:exported="true">
|
||
|
<intent-filter android:order="1">
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"
|
||
|
android:path="/cts/packageresolution"/>
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
<activity android:name=".OrderActivityDefault"
|
||
|
android:exported="true">
|
||
|
<intent-filter>
|
||
|
<!-- default order -->
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"/>
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
<activity android:name=".OrderActivity3"
|
||
|
android:exported="true">
|
||
|
<intent-filter android:order="3">
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"
|
||
|
android:pathPrefix="/cts"/>
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
|
||
|
<!-- Services used for queries -->
|
||
|
<service android:name=".OrderServiceDefault"
|
||
|
android:exported="true">
|
||
|
<intent-filter>
|
||
|
<!-- default order -->
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"/>
|
||
|
</intent-filter>
|
||
|
</service>
|
||
|
<service android:name=".OrderService2"
|
||
|
android:exported="true">
|
||
|
<intent-filter android:order="2">
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"
|
||
|
android:pathPrefix="/cts/package"/>
|
||
|
</intent-filter>
|
||
|
</service>
|
||
|
<service android:name=".OrderService3"
|
||
|
android:exported="true">
|
||
|
<intent-filter android:order="3">
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"
|
||
|
android:pathPrefix="/cts"/>
|
||
|
</intent-filter>
|
||
|
</service>
|
||
|
<service android:name=".OrderService1"
|
||
|
android:exported="true">
|
||
|
<intent-filter android:order="1">
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"
|
||
|
android:path="/cts/packageresolution"/>
|
||
|
</intent-filter>
|
||
|
</service>
|
||
|
|
||
|
<!-- Broadcast receivers used for queries -->
|
||
|
<receiver android:name=".OrderReceiver3"
|
||
|
android:exported="true">
|
||
|
<intent-filter android:order="3">
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"
|
||
|
android:pathPrefix="/cts"/>
|
||
|
</intent-filter>
|
||
|
</receiver>
|
||
|
<receiver android:name=".OrderReceiverDefault"
|
||
|
android:exported="true">
|
||
|
<intent-filter>
|
||
|
<!-- default order -->
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"/>
|
||
|
</intent-filter>
|
||
|
</receiver>
|
||
|
<receiver android:name=".OrderReceiver1"
|
||
|
android:exported="true">
|
||
|
<intent-filter android:order="1">
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"
|
||
|
android:path="/cts/packageresolution"/>
|
||
|
</intent-filter>
|
||
|
</receiver>
|
||
|
<receiver android:name=".OrderReceiver2"
|
||
|
android:exported="true">
|
||
|
<intent-filter android:order="2">
|
||
|
<action android:name="android.cts.intent.action.ORDERED"/>
|
||
|
<data android:scheme="https"
|
||
|
android:host="www.google.com"
|
||
|
android:pathPrefix="/cts/package"/>
|
||
|
</intent-filter>
|
||
|
</receiver>
|
||
|
</application>
|
||
|
|
||
|
<instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
|
||
|
android:targetPackage="android.appsecurity.cts.orderedactivity"/>
|
||
|
</manifest>
|