blob: f69d5500f7e485bdd8fd781a3c7d5b7d1ef6ee1c [file] [log] [blame]
Dianne Hackbornd4c4b762011-10-27 12:58:16 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.frameworkperf">
3 <uses-permission android:name="android.permission.WAKE_LOCK" />
4 <uses-sdk android:minSdkVersion="5" />
5
6 <application>
7 <activity android:name="FrameworkPerfActivity" android:label="Framework Perf">
8 <intent-filter>
9 <action android:name="android.intent.action.MAIN" />
10 <category android:name="android.intent.category.DEFAULT" />
11 <category android:name="android.intent.category.LAUNCHER" />
12 </intent-filter>
13 </activity>
14 <service android:name="SchedulerService">
15 </service>
16 </application>
17</manifest>