blob: e8e0b41ffd411129b7309f7d8e3d8c95345168b2 [file] [log] [blame]
Jason Monkd52356a2015-01-28 10:40:41 -05001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 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.settingslib">
19
jackqdyulei8accac92016-09-13 15:07:42 -070020 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
21 <uses-permission android:name="android.permission.MANAGE_USERS" />
jackqdyulei99177c32016-09-22 17:34:12 -070022 <uses-permission android:name="android.permission.MANAGE_NETWORK_POLICY"/>
jackqdyuleic6a32742016-09-27 15:58:51 -070023 <uses-permission android:name="android.permission.SET_TIME_ZONE" />
Sundeep Ghumanf4d33022017-06-05 19:47:36 -070024 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Ajay Nadathur7d176bc2016-10-24 16:55:24 -070025 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -080026 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
Ajay Nadathur7d176bc2016-10-24 16:55:24 -070027
jackqdyulei8accac92016-09-13 15:07:42 -070028
Jason Monkd52356a2015-01-28 10:40:41 -050029 <application>
30 <uses-library android:name="android.test.runner" />
jackqdyulei8accac92016-09-13 15:07:42 -070031 <activity android:name=".drawer.SettingsDrawerActivityTest$TestActivity"/>
Jason Monkd52356a2015-01-28 10:40:41 -050032 </application>
33
jackqdyulei8accac92016-09-13 15:07:42 -070034 <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
Jason Monkd52356a2015-01-28 10:40:41 -050035 android:targetPackage="com.android.settingslib"
36 android:label="Tests for SettingsLib">
37 </instrumentation>
38</manifest>