blob: 91ee2c60cef838fedff8f5facdc625338fe6e7df [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
Jason Noguchi41d88d52012-02-21 15:09:48 -08007
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008 http://www.apache.org/licenses/LICENSE-2.0
Jason Noguchi41d88d52012-02-21 15:09:48 -08009
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.mediaframeworktest">
Jason Noguchi41d88d52012-02-21 15:09:48 -080019
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020 <uses-permission android:name="android.permission.RECORD_AUDIO" />
Yu Shan Emily Laub9f15d72009-03-31 18:15:52 -070021 <uses-permission android:name="android.permission.CAMERA" />
Gloria Wangc060d862009-11-09 15:31:27 -080022 <uses-permission android:name="android.permission.INTERNET" />
San Mehat5a3a77d2009-06-01 09:25:28 -070023 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Eric Laurent02d0ff62010-10-14 16:45:02 -070024 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
Yu Shan Emily Lau85305f02011-02-15 16:45:08 -080025 <uses-permission android:name="android.permission.WAKE_LOCK" />
26
Jason Noguchi41d88d52012-02-21 15:09:48 -080027 <application>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028 <uses-library android:name="android.test.runner" />
29 <activity android:label="@string/app_name"
Yu Shan Emily Laud97943d2011-01-04 20:57:09 -080030 android:name="MediaFrameworkTest"
31 android:screenOrientation="landscape">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032 <intent-filter>
33 <action android:name="android.intent.action.MAIN" />
34 <category android:name="android.intent.category.LAUNCHER"/>
35 </intent-filter>
36 </activity>
Jason Noguchi41d88d52012-02-21 15:09:48 -080037 </application>
38
39 <instrumentation android:name=".CameraStressTestRunner"
40 android:targetPackage="com.android.mediaframeworktest"
41 android:label="Camera stress tests InstrumentationRunner">
42 </instrumentation>
43
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044 <instrumentation android:name=".MediaFrameworkTestRunner"
45 android:targetPackage="com.android.mediaframeworktest"
46 android:label="MediaFramework tests InstrumentationRunner">
47 </instrumentation>
Jason Noguchi41d88d52012-02-21 15:09:48 -080048
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049 <instrumentation android:name=".MediaFrameworkPerfTestRunner"
50 android:targetPackage="com.android.mediaframeworktest"
51 android:label="MediaFramework Performance tests InstrumentationRunner">
52 </instrumentation>
53
54 <instrumentation android:name=".MediaFrameworkUnitTestRunner"
55 android:targetPackage="com.android.mediaframeworktest"
56 android:label="MediaFramework unit tests InstrumentationRunner">
57 </instrumentation>
Jason Noguchi41d88d52012-02-21 15:09:48 -080058
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059 <instrumentation android:name=".MediaRecorderStressTestRunner"
60 android:targetPackage="com.android.mediaframeworktest"
61 android:label="MediaRecorder stress tests InstrumentationRunner">
62 </instrumentation>
63
Yu Shan Emily Laufd4a7c82010-08-10 18:30:44 -070064 <instrumentation android:name=".MediaFrameworkPowerTestRunner"
65 android:targetPackage="com.android.mediaframeworktest"
66 android:label="Media Power tests InstrumentationRunner">
67 </instrumentation>
68
Yu Shan Emily Laua58389b2011-02-07 18:50:37 -080069 <instrumentation android:name=".MediaPlayerStressTestRunner"
70 android:targetPackage="com.android.mediaframeworktest"
71 android:label="Media Power tests InstrumentationRunner">
72 </instrumentation>
73
Igor Murashkin4491d682013-05-31 16:43:48 -070074 <instrumentation android:name=".MediaFrameworkIntegrationTestRunner"
75 android:targetPackage="com.android.mediaframeworktest"
76 android:label="MediaFramework integration tests InstrumentationRunner">
77 </instrumentation>
78
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079</manifest>