Adam Lesinski 3516800b61 Second iteration of the UsageStats API
Based on feedback from API council, updated the API.
Also added support for querying the event log.

Change-Id: Ibaa008b9e5bd145acdfe8e20c25c2ed2d96be123
2014-08-08 12:08:15 -07:00

20 lines
703 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.tests.usagestats">
<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" />
<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>
<activity android:name=".UsageLogActivity" />
</application>
</manifest>