| <?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 xmlns:android="http://schemas.android.com/apk/res/android" |
| package="com.android.cts.ephemeralapp1" |
| android:targetSandboxVersion="2"> |
| <uses-sdk |
| android:minSdkVersion="25" /> |
| |
| <uses-permission android:name="com.android.alarm.permission.SET_ALARM" /> |
| <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> |
| <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| <uses-permission android:name="android.permission.CAMERA" /> |
| <uses-permission android:name="android.permission.INSTANT_APP_FOREGROUND_SERVICE" /> |
| <uses-permission android:name="android.permission.INTERNET" /> |
| <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
| <uses-permission android:name="android.permission.READ_PHONE_NUMBERS" /> |
| <uses-permission android:name="android.permission.VIBRATE" /> |
| <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| |
| <application |
| android:label="@string/app_name"> |
| <uses-library android:name="android.test.runner" /> |
| <activity |
| android:name=".EphemeralActivity" |
| android:theme="@android:style/Theme.NoDisplay"> |
| <!-- TEST: normal app can start w/o knowing about this activity --> |
| <intent-filter> |
| <action android:name="android.intent.action.VIEW" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| <category android:name="android.intent.category.BROWSABLE" /> |
| <data android:scheme="https" /> |
| <data android:host="cts.google.com" /> |
| <data android:path="/ephemeral" /> |
| </intent-filter> |
| <!-- TEST: ephemeral apps can see this activity using query methods --> |
| <!-- TEST: normal apps can't see this activity using query methods --> |
| <intent-filter android:priority="0"> |
| <action android:name="com.android.cts.ephemeraltest.QUERY" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| </intent-filter> |
| <!-- TEST: ephemeral apps can start this activity using directed intent --> |
| <!-- TEST: normal apps can't start this activity using directed intent --> |
| <intent-filter android:priority="0"> |
| <action android:name="com.android.cts.ephemeraltest.START_EPHEMERAL" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| </intent-filter> |
| </activity> |
| <activity |
| android:name=".EphemeralActivity2" |
| android:theme="@android:style/Theme.NoDisplay"> |
| <!-- TEST: ephemeral apps can start this activity using directed intent --> |
| <!-- TEST: normal apps can't start this activity using directed intent --> |
| <intent-filter android:priority="0"> |
| <action android:name="com.android.cts.ephemeraltest.START_EPHEMERAL_PRIVATE" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| </intent-filter> |
| </activity> |
| <activity |
| android:name=".EphemeralActivity3" |
| android:theme="@android:style/Theme.NoDisplay"> |
| <!-- TEST: ephemeral apps can start this activity using directed intent --> |
| </activity> |
| <activity android:name=".WebViewTestActivity" /> |
| <service |
| android:name=".EphemeralService"> |
| <!-- TEST: ephemeral apps can see this service using query methods --> |
| <intent-filter android:priority="0"> |
| <action android:name="com.android.cts.ephemeraltest.QUERY" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| </intent-filter> |
| <!-- TEST: ephemeral apps can start this service using directed intent --> |
| <intent-filter android:priority="-10"> |
| <action android:name="com.android.cts.ephemeraltest.START_EPHEMERAL" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| </intent-filter> |
| </service> |
| |
| <provider |
| android:name=".EphemeralProvider" |
| android:authorities="com.android.cts.ephemeralapp1.provider" |
| android:exported="true"> |
| <intent-filter android:priority="0"> |
| <action android:name="com.android.cts.ephemeraltest.QUERY" /> |
| </intent-filter> |
| </provider> |
| <service android:name=".SomeService"/> |
| </application> |
| |
| <instrumentation |
| android:name="android.support.test.runner.AndroidJUnitRunner" |
| android:targetPackage="com.android.cts.ephemeralapp1" /> |
| </manifest> |