Jeff Sharkey | 2e54ce4 | 2016-01-09 16:39:57 -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 xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | package="com.android.cts.encryptionapp"> |
Jeff Sharkey | 2e54ce4 | 2016-01-09 16:39:57 -0700 | [diff] [blame] | 19 | <application android:label="EncryptionApp"> |
| 20 | <activity android:name=".UnawareActivity" |
Jeff Sharkey | d837c46 | 2016-04-01 23:23:08 -0600 | [diff] [blame] | 21 | android:exported="true"> |
| 22 | <intent-filter> |
| 23 | <action android:name="com.android.cts.encryptionapp.TEST" /> |
| 24 | </intent-filter> |
| 25 | </activity> |
Jeff Sharkey | 2e54ce4 | 2016-01-09 16:39:57 -0700 | [diff] [blame] | 26 | |
| 27 | <receiver android:name=".UnawareReceiver" |
Jeff Sharkey | d837c46 | 2016-04-01 23:23:08 -0600 | [diff] [blame] | 28 | android:exported="true"> |
| 29 | <intent-filter> |
| 30 | <action android:name="com.android.cts.encryptionapp.TEST" /> |
| 31 | </intent-filter> |
| 32 | </receiver> |
Jeff Sharkey | 2e54ce4 | 2016-01-09 16:39:57 -0700 | [diff] [blame] | 33 | |
| 34 | <service android:name=".UnawareService" |
Jeff Sharkey | d837c46 | 2016-04-01 23:23:08 -0600 | [diff] [blame] | 35 | android:exported="true"> |
| 36 | <intent-filter> |
| 37 | <action android:name="com.android.cts.encryptionapp.TEST" /> |
| 38 | </intent-filter> |
| 39 | </service> |
Jeff Sharkey | 2e54ce4 | 2016-01-09 16:39:57 -0700 | [diff] [blame] | 40 | |
| 41 | <provider android:name=".UnawareProvider" |
| 42 | android:authorities="com.android.cts.encryptionapp.unaware" |
Jeff Sharkey | d837c46 | 2016-04-01 23:23:08 -0600 | [diff] [blame] | 43 | android:exported="true"> |
| 44 | <intent-filter> |
| 45 | <action android:name="com.android.cts.encryptionapp.TEST" /> |
| 46 | </intent-filter> |
| 47 | </provider> |
Jeff Sharkey | 2e54ce4 | 2016-01-09 16:39:57 -0700 | [diff] [blame] | 48 | |
| 49 | <activity android:name=".AwareActivity" |
Jeff Sharkey | f99c78f | 2016-03-17 11:20:14 -0600 | [diff] [blame] | 50 | android:directBootAware="true" |
Jeff Sharkey | d837c46 | 2016-04-01 23:23:08 -0600 | [diff] [blame] | 51 | android:exported="true"> |
| 52 | <intent-filter> |
| 53 | <action android:name="com.android.cts.encryptionapp.TEST" /> |
| 54 | </intent-filter> |
| 55 | </activity> |
Jeff Sharkey | 2e54ce4 | 2016-01-09 16:39:57 -0700 | [diff] [blame] | 56 | |
| 57 | <receiver android:name=".AwareReceiver" |
Jeff Sharkey | f99c78f | 2016-03-17 11:20:14 -0600 | [diff] [blame] | 58 | android:directBootAware="true" |
Jeff Sharkey | d837c46 | 2016-04-01 23:23:08 -0600 | [diff] [blame] | 59 | android:exported="true"> |
| 60 | <intent-filter> |
| 61 | <action android:name="com.android.cts.encryptionapp.TEST" /> |
| 62 | </intent-filter> |
| 63 | </receiver> |
Jeff Sharkey | 2e54ce4 | 2016-01-09 16:39:57 -0700 | [diff] [blame] | 64 | |
| 65 | <service android:name=".AwareService" |
Jeff Sharkey | f99c78f | 2016-03-17 11:20:14 -0600 | [diff] [blame] | 66 | android:directBootAware="true" |
Jeff Sharkey | d837c46 | 2016-04-01 23:23:08 -0600 | [diff] [blame] | 67 | android:exported="true"> |
| 68 | <intent-filter> |
| 69 | <action android:name="com.android.cts.encryptionapp.TEST" /> |
| 70 | </intent-filter> |
| 71 | </service> |
Jeff Sharkey | 2e54ce4 | 2016-01-09 16:39:57 -0700 | [diff] [blame] | 72 | |
| 73 | <provider android:name=".AwareProvider" |
| 74 | android:authorities="com.android.cts.encryptionapp.aware" |
Jeff Sharkey | f99c78f | 2016-03-17 11:20:14 -0600 | [diff] [blame] | 75 | android:directBootAware="true" |
Jeff Sharkey | d837c46 | 2016-04-01 23:23:08 -0600 | [diff] [blame] | 76 | android:exported="true"> |
| 77 | <intent-filter> |
| 78 | <action android:name="com.android.cts.encryptionapp.TEST" /> |
| 79 | </intent-filter> |
| 80 | </provider> |
Jeff Sharkey | 2e54ce4 | 2016-01-09 16:39:57 -0700 | [diff] [blame] | 81 | |
| 82 | <uses-library android:name="android.test.runner" /> |
| 83 | </application> |
| 84 | |
| 85 | <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner" |
| 86 | android:targetPackage="com.android.cts.encryptionapp" /> |
| 87 | |
| 88 | </manifest> |