1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Note: Add android:sharedUserId="android.uid.system" to the root element to simulate the system UID
4  caller case.
5-->
6
7<manifest xmlns:android="http://schemas.android.com/apk/res/android"
8     package="com.android.tests.usagereporter">
9
10    <application android:label="@string/reporter_app">
11        <activity android:name="UsageReporterActivity"
12             android:label="UsageReporter"
13             android:exported="true">
14            <intent-filter>
15                <action android:name="android.intent.action.MAIN"/>
16                <category android:name="android.intent.category.LAUNCHER"/>
17            </intent-filter>
18        </activity>
19
20    </application>
21</manifest>
22