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