2014-07-22 15:55:50 -07:00
|
|
|
<?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>
|
2014-07-21 15:25:30 -07:00
|
|
|
|
|
|
|
<activity android:name=".UsageLogActivity" />
|
2014-07-22 15:55:50 -07:00
|
|
|
</application>
|
|
|
|
</manifest>
|