blob: f70a1451c91ce3a89bfb906343356c9340252654 [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
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 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">
19
20 <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" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024 <application>
25 <uses-library android:name="android.test.runner" />
26 <activity android:label="@string/app_name"
27 android:name="MediaFrameworkTest">
28 <intent-filter>
29 <action android:name="android.intent.action.MAIN" />
30 <category android:name="android.intent.category.LAUNCHER"/>
31 </intent-filter>
32 </activity>
33 </application>
34 <instrumentation android:name=".MediaFrameworkTestRunner"
35 android:targetPackage="com.android.mediaframeworktest"
36 android:label="MediaFramework tests InstrumentationRunner">
37 </instrumentation>
38
39 <instrumentation android:name=".MediaFrameworkPerfTestRunner"
40 android:targetPackage="com.android.mediaframeworktest"
41 android:label="MediaFramework Performance tests InstrumentationRunner">
42 </instrumentation>
43
44 <instrumentation android:name=".MediaFrameworkUnitTestRunner"
45 android:targetPackage="com.android.mediaframeworktest"
46 android:label="MediaFramework unit tests InstrumentationRunner">
47 </instrumentation>
48
49 <instrumentation android:name=".MediaRecorderStressTestRunner"
50 android:targetPackage="com.android.mediaframeworktest"
51 android:label="MediaRecorder stress tests InstrumentationRunner">
52 </instrumentation>
53
Yu Shan Emily Laufd4a7c82010-08-10 18:30:44 -070054 <instrumentation android:name=".MediaFrameworkPowerTestRunner"
55 android:targetPackage="com.android.mediaframeworktest"
56 android:label="Media Power tests InstrumentationRunner">
57 </instrumentation>
58
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059</manifest>