2014-07-22 15:55:50 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2017-05-15 09:29:34 -07:00
|
|
|
<!--
|
|
|
|
Note: Add android:sharedUserId="android.uid.system" to the root element to simulate the system UID
|
|
|
|
caller case.
|
|
|
|
-->
|
|
|
|
|
2014-07-22 15:55:50 -07:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-05-15 09:29:34 -07:00
|
|
|
package="com.android.tests.usagestats"
|
|
|
|
>
|
2014-07-22 15:55:50 -07:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" />
|
2018-03-20 19:37:46 -07:00
|
|
|
<uses-permission android:name="android.permission.OBSERVE_APP_USAGE" />
|
2014-07-22 15:55:50 -07:00
|
|
|
|
|
|
|
<application android:label="Usage Access Test">
|
|
|
|
<activity android:name=".UsageStatsActivity"
|
|
|
|
android:label="Device Usage History">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-07-21 15:25:30 -07:00
|
|
|
|
|
|
|
<activity android:name=".UsageLogActivity" />
|
2018-03-11 14:42:06 -07:00
|
|
|
|
2014-07-22 15:55:50 -07:00
|
|
|
</application>
|
|
|
|
</manifest>
|