Geoffrey Pitsch | b879cc6 | 2016-11-01 13:38:22 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2016 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 | package="com.android.frameworks.tests.notification"> |
| 19 | |
| 20 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
Geoffrey Pitsch | 0353371 | 2017-01-05 10:30:07 -0500 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
| 22 | <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" /> |
Geoffrey Pitsch | b879cc6 | 2016-11-01 13:38:22 -0400 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
Geoffrey Pitsch | 0353371 | 2017-01-05 10:30:07 -0500 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Geoffrey Pitsch | 331a64d | 2017-01-17 14:00:47 -0500 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.ACCESS_NOTIFICATIONS" /> |
Julia Reynolds | 4024b66 | 2017-03-01 09:33:41 -0500 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
Julia Reynolds | 73ed76b | 2017-04-04 17:04:38 -0400 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.STATUS_BAR_SERVICE" /> |
Geoffrey Pitsch | b879cc6 | 2016-11-01 13:38:22 -0400 | [diff] [blame] | 28 | |
| 29 | <application> |
| 30 | <uses-library android:name="android.test.runner" /> |
| 31 | </application> |
| 32 | |
| 33 | <instrumentation |
Jason Monk | c429f69 | 2017-06-27 13:13:49 -0400 | [diff] [blame] | 34 | android:name="android.testing.TestableInstrumentation" |
Geoffrey Pitsch | b879cc6 | 2016-11-01 13:38:22 -0400 | [diff] [blame] | 35 | android:targetPackage="com.android.frameworks.tests.notification" |
| 36 | android:label="Notification Tests" /> |
| 37 | </manifest> |