jackqdyulei | 7e97d2d | 2017-08-14 13:54:22 -0700 | [diff] [blame] | 1 | <?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" |
jackqdyulei | 9d78df0 | 2017-08-15 10:12:14 -0700 | [diff] [blame] | 17 | package="com.android.settings.anomaly.tester"> |
jackqdyulei | 7e97d2d | 2017-08-14 13:54:22 -0700 | [diff] [blame] | 18 | |
jackqdyulei | 9d78df0 | 2017-08-15 10:12:14 -0700 | [diff] [blame] | 19 | <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 Sharkey | 9e07eab | 2021-03-22 15:33:01 -0600 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/> |
| 23 | <uses-permission android:name="android.permission.BLUETOOTH_SCAN"/> |
jackqdyulei | 0cc62f8 | 2017-08-15 17:02:58 -0700 | [diff] [blame] | 24 | <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"/> |
jackqdyulei | e429894 | 2017-08-17 14:26:01 -0700 | [diff] [blame] | 27 | |
jackqdyulei | 7e97d2d | 2017-08-14 13:54:22 -0700 | [diff] [blame] | 28 | <application |
| 29 | android:allowBackup="false" |
| 30 | android:label="@string/app_name" |
| 31 | android:supportsRtl="true" |
| 32 | android:theme="@android:style/Theme.Material.Light.DarkActionBar"> |
jackqdyulei | e429894 | 2017-08-17 14:26:01 -0700 | [diff] [blame] | 33 | <uses-library android:name="android.test.runner" /> |
jackqdyulei | 7e97d2d | 2017-08-14 13:54:22 -0700 | [diff] [blame] | 34 | <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> |
jackqdyulei | 9d78df0 | 2017-08-15 10:12:14 -0700 | [diff] [blame] | 42 | |
| 43 | <service |
| 44 | android:name=".service.AnomalyService" |
| 45 | android:exported="false"/> |
jackqdyulei | 7e97d2d | 2017-08-14 13:54:22 -0700 | [diff] [blame] | 46 | </application> |
| 47 | |
jackqdyulei | e429894 | 2017-08-17 14:26:01 -0700 | [diff] [blame] | 48 | <instrumentation |
Brett Chabot | 031dcf5 | 2018-12-13 19:06:32 -0800 | [diff] [blame] | 49 | android:name="androidx.test.runner.AndroidJUnitRunner" |
jackqdyulei | e429894 | 2017-08-17 14:26:01 -0700 | [diff] [blame] | 50 | android:targetPackage="com.android.settings" |
| 51 | android:label="Settings Test Cases"> |
| 52 | </instrumentation> |
| 53 | |
Jeff Sharkey | 9e07eab | 2021-03-22 15:33:01 -0600 | [diff] [blame] | 54 | </manifest> |