Michael Wachenschwanz | 3677852 | 2018-11-12 11:06:19 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
Michael Wachenschwanz | 3677852 | 2018-11-12 11:06:19 -0800 | [diff] [blame] | 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" |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 8 | package="com.android.tests.usagereporter"> |
Michael Wachenschwanz | 3677852 | 2018-11-12 11:06:19 -0800 | [diff] [blame] | 9 | |
| 10 | <application android:label="@string/reporter_app"> |
| 11 | <activity android:name="UsageReporterActivity" |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 12 | android:label="UsageReporter" |
| 13 | android:exported="true"> |
Michael Wachenschwanz | 3677852 | 2018-11-12 11:06:19 -0800 | [diff] [blame] | 14 | <intent-filter> |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 15 | <action android:name="android.intent.action.MAIN"/> |
| 16 | <category android:name="android.intent.category.LAUNCHER"/> |
Michael Wachenschwanz | 3677852 | 2018-11-12 11:06:19 -0800 | [diff] [blame] | 17 | </intent-filter> |
| 18 | </activity> |
| 19 | |
| 20 | </application> |
| 21 | </manifest> |