blob: 32905a96ae14c75d54093543c8e242fe30974c52 [file] [log] [blame]
Arthur Eubanks263d6742017-12-18 13:46:59 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2018 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Arthur Eubanks433770f2018-01-09 15:48:53 -080017 package="com.android.frameworks.perftests.amteststestapp">
Arthur Eubanksb119dad2018-02-05 14:56:39 -080018 <uses-sdk
19 android:minSdkVersion="21"
20 android:targetSdkVersion="27" />
Arthur Eubanks263d6742017-12-18 13:46:59 -080021 <application android:name=".TestApplication">
Arthur Eubanks433770f2018-01-09 15:48:53 -080022 <provider
23 android:authorities="com.android.frameworks.perftests.amteststestapp"
24 android:name=".TestContentProvider"
25 android:exported="true" />
Arthur Eubanks263d6742017-12-18 13:46:59 -080026 <receiver
Arthur Eubanks433770f2018-01-09 15:48:53 -080027 android:name=".TestBroadcastReceiver"
28 android:exported="true">
Arthur Eubanks263d6742017-12-18 13:46:59 -080029 <intent-filter>
30 <action android:name="com.android.frameworks.perftests.ACTION_BROADCAST_MANIFEST_RECEIVE" />
31 <category android:name="android.intent.category.DEFAULT" />
32 </intent-filter>
33 </receiver>
Arthur Eubanks20a29572018-01-09 11:40:58 -080034 <service
Arthur Eubanksebd2ea02018-02-13 10:20:39 -080035 android:name=".StartProcessService"
36 android:exported="true" />
37 <service
Arthur Eubanks20a29572018-01-09 11:40:58 -080038 android:name=".TestService"
39 android:exported="true" />
Arthur Eubanks263d6742017-12-18 13:46:59 -080040 </application>
41</manifest>