Home | History | Annotate | Download | only in FrameworkPerf
      1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      2         package="com.android.frameworkperf">
      3     <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
      4     <uses-permission android:name="android.permission.WAKE_LOCK" />
      5     <uses-sdk android:minSdkVersion="5" />
      6 
      7     <application android:hardwareAccelerated="false">
      8         <uses-library android:name="android.test.runner" />
      9         <activity android:name="FrameworkPerfActivity" android:label="Framework Perf">
     10             <intent-filter>
     11                 <action android:name="android.intent.action.MAIN" />
     12                 <category android:name="android.intent.category.DEFAULT" />
     13                 <category android:name="android.intent.category.LAUNCHER" />
     14             </intent-filter>
     15         </activity>
     16         <service android:name="SchedulerService"
     17                  android:foregroundServiceType="dataSync|mediaPlayback|phoneCall|location|connectedDevice">
     18         </service>
     19         <service android:name="TestService" android:process=":test">
     20         </service>
     21         <service android:name="LocalTestService">
     22         </service>
     23         <receiver android:name="Receiver" android:exported="true">
     24         </receiver>
     25     </application>
     26     <instrumentation android:name="android.test.InstrumentationTestRunner"
     27         android:targetPackage="com.android.frameworkperf"
     28         android:label="Framework Perf Runner"
     29     />
     30 </manifest>
     31