AndroidManifest.xml revision 6c296d3b3ee385fac422a21ab56d93eaf500246f
1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2013 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 coreApp="true" 19 package="com.android.server.telecom.tests" 20 android:debuggable="true"> 21 22 <!-- TODO: Needed because we call BluetoothAdapter.getDefaultAdapter() statically, and 23 BluetoothAdapter is a final class. --> 24 <uses-permission android:name="android.permission.BLUETOOTH" /> 25 26 <!-- TODO: Needed because we call ActivityManager.getCurrentUser() statically. --> 27 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> 28 <uses-permission android:name="android.permission.MANAGE_USERS" /> 29 30 <!-- Used to access TelephonyManager APIs --> 31 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> 32 33 <application android:label="@string/app_name" 34 android:debuggable="true"> 35 <uses-library android:name="android.test.runner" /> 36 </application> 37 38 <!-- 39 The prefered way is to use 'runtest': 40 runtest telecom-unit 41 42 runtest is a wrapper around 'adb shell'. The low level shell command is: 43 adb shell am instrument -w com.android.server.telecom.tests/android.test.InstrumentationTestRunner 44 45 To run a single test case: 46 adb shell am instrument -w com.android.server.telecom.tests/android.test.InstrumentationTestRunner 47 -e com.android.server.telecom.tests.unit.FooUnitTest 48 --> 49 <instrumentation android:name="android.test.InstrumentationTestRunner" 50 android:targetPackage="com.android.server.telecom.tests" 51 android:label="Telecomm application tests" 52 android:debuggable="true"/> 53</manifest> 54