2011-10-27 12:58:16 -07:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.frameworkperf">
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<uses-sdk android:minSdkVersion="5" />
|
|
|
|
|
2011-11-01 15:28:43 -07:00
|
|
|
<application android:hardwareAccelerated="false">
|
2011-11-17 14:32:41 -08:00
|
|
|
<uses-library android:name="android.test.runner" />
|
2011-10-27 12:58:16 -07:00
|
|
|
<activity android:name="FrameworkPerfActivity" android:label="Framework Perf">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<service android:name="SchedulerService">
|
|
|
|
</service>
|
2011-11-07 14:45:49 -08:00
|
|
|
<service android:name="TestService" android:process=":test">
|
|
|
|
</service>
|
|
|
|
<service android:name="LocalTestService">
|
|
|
|
</service>
|
2011-10-31 15:39:59 -07:00
|
|
|
<receiver android:name="Receiver" android:exported="true">
|
|
|
|
</receiver>
|
2011-10-27 12:58:16 -07:00
|
|
|
</application>
|
2011-11-17 14:32:41 -08:00
|
|
|
|
|
|
|
<instrumentation android:name="android.test.InstrumentationTestRunner"
|
|
|
|
android:targetPackage="com.android.frameworkperf"
|
|
|
|
android:label="Framework Perf Runner"
|
|
|
|
/>
|
2011-10-27 12:58:16 -07:00
|
|
|
</manifest>
|