Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright (C) 2012 The Android Open Source Project |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License |
| 16 | --> |
| 17 | |
| 18 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 19 | package="com.android.dialer.tests"> |
| 20 | |
Yorke Lee | 7de107b | 2015-08-26 19:08:30 -0700 | [diff] [blame] | 21 | <uses-sdk |
| 22 | android:minSdkVersion="23" |
| 23 | android:targetSdkVersion="23" /> |
| 24 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 26 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| 27 | <uses-permission android:name="android.permission.READ_CALL_LOG" /> |
| 28 | <uses-permission android:name="android.permission.WRITE_CALL_LOG" /> |
| 29 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
| 30 | |
| 31 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
Tyler Gunn | 45ed3b5 | 2014-02-03 08:31:10 -0800 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
| 34 | <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" /> |
| 35 | <uses-permission android:name="android.permission.READ_SYNC_STATS" /> |
| 36 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
| 37 | <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> |
| 38 | |
| 39 | <uses-permission android:name="android.permission.READ_PROFILE" /> |
| 40 | <uses-permission android:name="android.permission.READ_SOCIAL_STREAM" /> |
| 41 | |
Yorke Lee | 326bc22 | 2015-07-20 16:19:36 -0700 | [diff] [blame] | 42 | <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" /> |
| 43 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 44 | <application> |
| 45 | <uses-library android:name="android.test.runner" /> |
| 46 | <meta-data android:name="com.android.dialer.iconset" android:resource="@xml/iconset" /> |
| 47 | |
| 48 | <activity android:name=".calllog.FillCallLogTestActivity" |
| 49 | android:label="Call log filter test" |
| 50 | > |
| 51 | <intent-filter> |
| 52 | <action android:name="android.intent.action.MAIN" /> |
| 53 | <category android:name="android.intent.category.DEFAULT" /> |
| 54 | <category android:name="android.intent.category.LAUNCHER" /> |
| 55 | </intent-filter> |
| 56 | </activity> |
| 57 | </application> |
| 58 | |
| 59 | <instrumentation android:name="android.test.InstrumentationTestRunner" |
| 60 | android:targetPackage="com.android.dialer" |
| 61 | android:label="Dialer app tests"> |
| 62 | </instrumentation> |
| 63 | |
| 64 | <instrumentation android:name="com.android.dialer.DialerLaunchPerformance" |
| 65 | android:targetPackage="com.android.dialer" |
| 66 | android:label="Dialer launch performance"> |
| 67 | </instrumentation> |
| 68 | |
| 69 | </manifest> |