1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2012 The Android Open Source Project Licensed under the 3 Apache License, Version 2.0 (the "License"); you may not use this file except 4 in compliance with the License. 5 You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 6 Unless required by applicable law or agreed to in writing, software distributed 7 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 8 OR CONDITIONS OF ANY KIND, either express or implied. See the License for 9 the specific language governing permissions and limitations under the License. --> 10 11<!-- Declare the contents of this Android application. The namespace attribute 12 brings in the Android platform namespace, and the package supplies a unique 13 name for the application. When writing your own application, the package 14 name must be changed from "com.example.*" to come from a domain that you 15 own or have control over. --> 16<manifest xmlns:android="http://schemas.android.com/apk/res/android" 17 package="com.android.dummy"> 18 19 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 20 <uses-permission android:name="android.permission.DEVICE_POWER" /> 21 <uses-permission android:name="android.permission.WAKE_LOCK" /> 22 <uses-permission android:name="android.permission.SET_TIME" /> 23 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> 24 <uses-permission android:name="android.permission.BLUETOOTH" /> 25 <uses-permission android:name="android.permission.VIBRATE" /> 26 <uses-permission android:name="android.permission.GET_ACCOUNTS" /> 27 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 28 <application android:label="Power Tests"> 29 <uses-library android:name="android.test.runner" /> 30 </application> 31 32 <instrumentation 33 android:name="android.test.InstrumentationTestRunner" 34 android:targetPackage="com.android.dummy" 35 android:label="UB-UIAutomator Power Tests"> 36 </instrumentation> 37</manifest> 38 39