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