blob: bf46d150c1dac5543c9478001894dc01a33b31ee [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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="android.core">
19 <uses-permission android:name="android.permission.RECEIVE_SMS"/>
20 <uses-permission android:name="android.permission.INTERNET" />
21 <uses-permission android:name="android.permission.READ_CONTACTS" />
22 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
23 <uses-permission android:name="android.permission.WAKE_LOCK" />
24 <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
25 <uses-permission android:name="android.permission.WRITE_APN_SETTINGS" />
26 <uses-permission android:name="android.permission.BROADCAST_STICKY" />
Andreas Sandblad2986f852010-06-16 13:10:49 +020027 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028
29 <!-- location test permissions -->
30 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
31 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION"/>
32 <uses-permission android:name="android.permission.WRITE_SETTINGS"/>
33 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
Brett Chabotd0bff152009-07-21 18:17:05 -070034 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035
36 <application>
37 <uses-library android:name="android.test.runner" />
Narayan Kamath3bdd3272014-11-27 18:17:35 +000038 <uses-library android:name="org.apache.http.legacy" android:required="false" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039 </application>
40
41 <instrumentation
42 android:name="android.test.InstrumentationTestRunner"
43 android:targetPackage="android.core"
44 android:label="Core Tests" />
45</manifest>