Home | History | Annotate | Download | only in UsageStatsTest
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <!--
      4   Note: Add android:sharedUserId="android.uid.system" to the root element to simulate the system UID
      5   caller case.
      6 -->
      7 
      8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      9     package="com.android.tests.usagestats"
     10     >
     11 
     12     <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" />
     13 
     14     <application android:label="Usage Access Test">
     15         <activity android:name=".UsageStatsActivity"
     16                   android:label="Device Usage History">
     17             <intent-filter>
     18                 <action android:name="android.intent.action.MAIN" />
     19                 <category android:name="android.intent.category.LAUNCHER" />
     20             </intent-filter>
     21         </activity>
     22 
     23         <activity android:name=".UsageLogActivity" />
     24     </application>
     25 </manifest>
     26