blob: e019e2806a941fd1a9f1d7deb6ca4e0d6282b2ab [file] [log] [blame]
Neal Nguyen1a44d5d2010-01-13 10:42:43 -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="com.android.frameworks.graphicstests">
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" />
Dan Sandlerb9f7aac32015-03-04 13:08:49 -050027 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Neal Nguyen1a44d5d2010-01-13 10:42:43 -080028
29
30 <application>
31 <uses-library android:name="android.test.runner" />
32 </application>
33
34 <instrumentation
35 android:name="android.test.InstrumentationTestRunner"
36 android:targetPackage="com.android.frameworks.graphicstests"
37 android:label="Frameworks Graphics Tests" />
38</manifest>