Adam Lesinski | e159e2e | 2014-07-22 15:55:50 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | |
Makoto Onuki | ad62301 | 2017-05-15 09:29:34 -0700 | [diff] [blame] | 3 | <!-- |
| 4 | Note: Add android:sharedUserId="android.uid.system" to the root element to simulate the system UID |
| 5 | caller case. |
| 6 | --> |
| 7 | |
Adam Lesinski | e159e2e | 2014-07-22 15:55:50 -0700 | [diff] [blame] | 8 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Makoto Onuki | ad62301 | 2017-05-15 09:29:34 -0700 | [diff] [blame] | 9 | package="com.android.tests.usagestats" |
| 10 | > |
Adam Lesinski | e159e2e | 2014-07-22 15:55:50 -0700 | [diff] [blame] | 11 | |
| 12 | <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" /> |
Amith Yamasani | bc813eb | 2018-03-20 19:37:46 -0700 | [diff] [blame] | 13 | <uses-permission android:name="android.permission.OBSERVE_APP_USAGE" /> |
Adam Lesinski | e159e2e | 2014-07-22 15:55:50 -0700 | [diff] [blame] | 14 | |
| 15 | <application android:label="Usage Access Test"> |
| 16 | <activity android:name=".UsageStatsActivity" |
| 17 | android:label="Device Usage History"> |
| 18 | <intent-filter> |
| 19 | <action android:name="android.intent.action.MAIN" /> |
| 20 | <category android:name="android.intent.category.LAUNCHER" /> |
| 21 | </intent-filter> |
| 22 | </activity> |
Adam Lesinski | 3516800 | 2014-07-21 15:25:30 -0700 | [diff] [blame] | 23 | |
| 24 | <activity android:name=".UsageLogActivity" /> |
Amith Yamasani | 62ec27e9 | 2018-03-11 14:42:06 -0700 | [diff] [blame] | 25 | |
Adam Lesinski | e159e2e | 2014-07-22 15:55:50 -0700 | [diff] [blame] | 26 | </application> |
| 27 | </manifest> |