blob: da3c9e4727336117290e88d08e9d50107aabc327 [file] [log] [blame]
Jeff Sharkey2e54ce42016-01-09 16:39:57 -07001<?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 Sharkey2e54ce42016-01-09 16:39:57 -070019 <application android:label="EncryptionApp">
20 <activity android:name=".UnawareActivity"
Jeff Sharkeyd837c462016-04-01 23:23:08 -060021 android:exported="true">
22 <intent-filter>
23 <action android:name="com.android.cts.encryptionapp.TEST" />
24 </intent-filter>
25 </activity>
Jeff Sharkey2e54ce42016-01-09 16:39:57 -070026
27 <receiver android:name=".UnawareReceiver"
Jeff Sharkeyd837c462016-04-01 23:23:08 -060028 android:exported="true">
29 <intent-filter>
30 <action android:name="com.android.cts.encryptionapp.TEST" />
31 </intent-filter>
32 </receiver>
Jeff Sharkey2e54ce42016-01-09 16:39:57 -070033
34 <service android:name=".UnawareService"
Jeff Sharkeyd837c462016-04-01 23:23:08 -060035 android:exported="true">
36 <intent-filter>
37 <action android:name="com.android.cts.encryptionapp.TEST" />
38 </intent-filter>
39 </service>
Jeff Sharkey2e54ce42016-01-09 16:39:57 -070040
41 <provider android:name=".UnawareProvider"
42 android:authorities="com.android.cts.encryptionapp.unaware"
Jeff Sharkeyd837c462016-04-01 23:23:08 -060043 android:exported="true">
44 <intent-filter>
45 <action android:name="com.android.cts.encryptionapp.TEST" />
46 </intent-filter>
47 </provider>
Jeff Sharkey2e54ce42016-01-09 16:39:57 -070048
49 <activity android:name=".AwareActivity"
Jeff Sharkeyf99c78f2016-03-17 11:20:14 -060050 android:directBootAware="true"
Jeff Sharkeyd837c462016-04-01 23:23:08 -060051 android:exported="true">
52 <intent-filter>
53 <action android:name="com.android.cts.encryptionapp.TEST" />
54 </intent-filter>
55 </activity>
Jeff Sharkey2e54ce42016-01-09 16:39:57 -070056
57 <receiver android:name=".AwareReceiver"
Jeff Sharkeyf99c78f2016-03-17 11:20:14 -060058 android:directBootAware="true"
Jeff Sharkeyd837c462016-04-01 23:23:08 -060059 android:exported="true">
60 <intent-filter>
61 <action android:name="com.android.cts.encryptionapp.TEST" />
62 </intent-filter>
63 </receiver>
Jeff Sharkey2e54ce42016-01-09 16:39:57 -070064
65 <service android:name=".AwareService"
Jeff Sharkeyf99c78f2016-03-17 11:20:14 -060066 android:directBootAware="true"
Jeff Sharkeyd837c462016-04-01 23:23:08 -060067 android:exported="true">
68 <intent-filter>
69 <action android:name="com.android.cts.encryptionapp.TEST" />
70 </intent-filter>
71 </service>
Jeff Sharkey2e54ce42016-01-09 16:39:57 -070072
73 <provider android:name=".AwareProvider"
74 android:authorities="com.android.cts.encryptionapp.aware"
Jeff Sharkeyf99c78f2016-03-17 11:20:14 -060075 android:directBootAware="true"
Jeff Sharkeyd837c462016-04-01 23:23:08 -060076 android:exported="true">
77 <intent-filter>
78 <action android:name="com.android.cts.encryptionapp.TEST" />
79 </intent-filter>
80 </provider>
Jeff Sharkey2e54ce42016-01-09 16:39:57 -070081
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>