blob: aa663f3b78f2f2f60eb6523f5695a690e27ecbf4 [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
Dianne Hackborn0500b3c2011-11-01 15:28:43 -07006 <application android:hardwareAccelerated="false">
Dianne Hackbornd4c4b762011-10-27 12:58:16 -07007 <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>
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -070016 <receiver android:name="Receiver" android:exported="true">
17 </receiver>
Dianne Hackbornd4c4b762011-10-27 12:58:16 -070018 </application>
19</manifest>