1e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania<?xml version="1.0" encoding="utf-8"?>
2e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania
3e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania<!-- Copyright (C) 2009 The Android Open Source Project
4e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania
5e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania     Licensed under the Apache License, Version 2.0 (the "License");
6e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania     you may not use this file except in compliance with the License.
7e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania     You may obtain a copy of the License at
8e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania
9e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania          http://www.apache.org/licenses/LICENSE-2.0
10e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania
11e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania     Unless required by applicable law or agreed to in writing, software
12e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania     distributed under the License is distributed on an "AS IS" BASIS,
13e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania     See the License for the specific language governing permissions and
15e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania     limitations under the License.
16e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania-->
17e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania
18e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1922e31e5b609136d5bf7d77b1dccd6b042b83ebdfNeal Nguyen    package="com.android.frameworks.telephonytests">
20e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania
21e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania    <application>
22e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania        <uses-library android:name="android.test.runner" />
23e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania        <activity android:label="TelephonyTest"
24e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania                android:name="TelephonyTest">
25e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania            <intent-filter>
26e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania                <action android:name="android.intent.action.MAIN" />
27e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania                <category android:name="android.intent.category.LAUNCHER"/>
28e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania            </intent-filter>
29e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania        </activity>
30e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania    </application>
3122e31e5b609136d5bf7d77b1dccd6b042b83ebdfNeal Nguyen    <instrumentation android:name="android.test.InstrumentationTestRunner"
3222e31e5b609136d5bf7d77b1dccd6b042b83ebdfNeal Nguyen        android:targetPackage="com.android.frameworks.telephonytests"
3322e31e5b609136d5bf7d77b1dccd6b042b83ebdfNeal Nguyen        android:label="Frameworks Telephony Tests">
3460d45f0f0320801a16db2ad038453c098e98966cNicolas Catania    </instrumentation>
35afeeaf351a6d48ff218b31775de9b73c8848eba5Xia Wang
36afeeaf351a6d48ff218b31775de9b73c8848eba5Xia Wang    <instrumentation android:name=".TelephonyMockRilTestRunner"
37afeeaf351a6d48ff218b31775de9b73c8848eba5Xia Wang        android:targetPackage="com.android.frameworks.telephonytests"
38afeeaf351a6d48ff218b31775de9b73c8848eba5Xia Wang        android:label="Test Runner for Mock Ril Tests"
39afeeaf351a6d48ff218b31775de9b73c8848eba5Xia Wang    />
40afeeaf351a6d48ff218b31775de9b73c8848eba5Xia Wang
4160d45f0f0320801a16db2ad038453c098e98966cNicolas Catania    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
42afeeaf351a6d48ff218b31775de9b73c8848eba5Xia Wang    <uses-permission android:name="android.permission.INTERNET" />
431a44d5dcabc18cd5ef111f732ccff91683a1a093Neal Nguyen
44e22415817febc8d3229d1774f3b0dfda0fda8f46Nicolas Catania</manifest>
45