blob: 3c5fb1fc1c66809841328712315830f799359ac2 [file] [log] [blame]
jackqdyulei7e97d2d2017-08-14 13:54:22 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
jackqdyulei9d78df02017-08-15 10:12:14 -070017 package="com.android.settings.anomaly.tester">
jackqdyulei7e97d2d2017-08-14 13:54:22 -070018
jackqdyulei9d78df02017-08-15 10:12:14 -070019 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
20 <uses-permission android:name="android.permission.BLUETOOTH"/>
21 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
Jeff Sharkey9e07eab2021-03-22 15:33:01 -060022 <uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/>
23 <uses-permission android:name="android.permission.BLUETOOTH_SCAN"/>
jackqdyulei0cc62f82017-08-15 17:02:58 -070024 <uses-permission android:name="android.permission.WAKE_LOCK"/>
25 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
26 <uses-permission android:name="android.permission.WRITE_SETTINGS"/>
jackqdyuleie4298942017-08-17 14:26:01 -070027
jackqdyulei7e97d2d2017-08-14 13:54:22 -070028 <application
29 android:allowBackup="false"
30 android:label="@string/app_name"
31 android:supportsRtl="true"
32 android:theme="@android:style/Theme.Material.Light.DarkActionBar">
jackqdyuleie4298942017-08-17 14:26:01 -070033 <uses-library android:name="android.test.runner" />
jackqdyulei7e97d2d2017-08-14 13:54:22 -070034 <activity
35 android:name=".AnomalyActivity"
36 android:exported="true">
37 <intent-filter>
38 <action android:name="android.intent.action.MAIN" />
39 <category android:name="android.intent.category.LAUNCHER" />
40 </intent-filter>
41 </activity>
jackqdyulei9d78df02017-08-15 10:12:14 -070042
43 <service
44 android:name=".service.AnomalyService"
45 android:exported="false"/>
jackqdyulei7e97d2d2017-08-14 13:54:22 -070046 </application>
47
jackqdyuleie4298942017-08-17 14:26:01 -070048 <instrumentation
Brett Chabot031dcf52018-12-13 19:06:32 -080049 android:name="androidx.test.runner.AndroidJUnitRunner"
jackqdyuleie4298942017-08-17 14:26:01 -070050 android:targetPackage="com.android.settings"
51 android:label="Settings Test Cases">
52 </instrumentation>
53
Jeff Sharkey9e07eab2021-03-22 15:33:01 -060054</manifest>