The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | <?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.frameworktest"> |
| 19 | |
| 20 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 21 | <uses-permission android:name="android.permission.HARDWARE_TEST" /> |
| 22 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
svetoslavganov | 75986cf | 2009-05-14 22:28:01 -0700 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.ACCESSIBILITY_EVENT_VIEW_TYPES" /> |
| 24 | <uses-permission android:name="android.permission.ACCESSIBILITY_EVENT_TRANSITION_TYPES" /> |
| 25 | <uses-permission android:name="android.permission.ACCESSIBILITY_EVENT_NOTIFICATION_TYPES" /> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 | |
| 27 | <application android:theme="@style/Theme"> |
| 28 | <uses-library android:name="android.test.runner" /> |
| 29 | |
| 30 | <activity android:name=".FrameworkTestApplication" android:label="FrameworkTestApplication"> |
| 31 | <intent-filter> |
| 32 | <action android:name="android.intent.action.MAIN" /> |
| 33 | <category android:name="android.intent.category.LAUNCHER" /> |
| 34 | </intent-filter> |
| 35 | </activity> |
| 36 | |
| 37 | <activity android:name=".performance.InvalidateCycle" android:label="InvalidateCycle"> |
| 38 | <intent-filter> |
| 39 | <action android:name="android.intent.action.MAIN" /> |
| 40 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 41 | </intent-filter> |
| 42 | </activity> |
| 43 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 44 | <activity android:name=".settings.RingtonePickerActivityLauncher" android:label="RingtonePickerActivityLauncher"> |
| 45 | <intent-filter> |
| 46 | <action android:name="android.intent.action.MAIN" /> |
| 47 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 48 | </intent-filter> |
| 49 | </activity> |
Romain Guy | f32b488 | 2009-12-04 11:50:22 -0800 | [diff] [blame] | 50 | |
svetoslavganov | 75986cf | 2009-05-14 22:28:01 -0700 | [diff] [blame] | 51 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 52 | </application> |
| 53 | |
| 54 | </manifest> |