blob: 4a3487f29dc4b14192cab6fc5a2ff664a9b9a21c [file] [log] [blame]
Michael Wachenschwanz36778522018-11-12 11:06:19 -08001<?xml version="1.0" encoding="utf-8"?>
Michael Wachenschwanz36778522018-11-12 11:06:19 -08002<!--
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"
Ashwini Orugantie178c242020-03-18 15:46:39 -07008 package="com.android.tests.usagereporter">
Michael Wachenschwanz36778522018-11-12 11:06:19 -08009
10 <application android:label="@string/reporter_app">
11 <activity android:name="UsageReporterActivity"
Ashwini Orugantie178c242020-03-18 15:46:39 -070012 android:label="UsageReporter"
13 android:exported="true">
Michael Wachenschwanz36778522018-11-12 11:06:19 -080014 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070015 <action android:name="android.intent.action.MAIN"/>
16 <category android:name="android.intent.category.LAUNCHER"/>
Michael Wachenschwanz36778522018-11-12 11:06:19 -080017 </intent-filter>
18 </activity>
19
20 </application>
21</manifest>