| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| /* |
| * Copyright (C) 2010, The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| --> |
| |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| package="com.android.loaderapp" |
| > |
| |
| <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| |
| <application |
| android:label="@string/app_name" |
| android:icon="@drawable/ic_launcher_contacts" |
| > |
| <!-- By default it launches the phone mode --> |
| <activity android:name="FrontDoor" |
| android:label="@string/app_name" |
| android:theme="@style/TallTitleBarTheme" |
| > |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| <category android:name="android.intent.category.LAUNCHER" /> |
| <category android:name="android.intent.category.BROWSABLE" /> |
| </intent-filter> |
| </activity> |
| |
| <activity-alias android:name="FrontDoorNormal" |
| android:targetActivity="FrontDoor" |
| android:label="@string/app_name_normal" |
| > |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| <category android:name="android.intent.category.LAUNCHER" /> |
| <category android:name="android.intent.category.BROWSABLE" /> |
| </intent-filter> |
| </activity-alias> |
| |
| <activity-alias android:name="FrontDoorXLarge" |
| android:targetActivity="FrontDoor" |
| android:label="@string/app_name_xlarge" |
| > |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| <category android:name="android.intent.category.LAUNCHER" /> |
| <category android:name="android.intent.category.BROWSABLE" /> |
| </intent-filter> |
| </activity-alias> |
| |
| <activity-alias android:name="FrontDoorGroupsXLarge" |
| android:targetActivity="FrontDoor" |
| android:label="@string/app_name_xlarge_groups" |
| > |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| <category android:name="android.intent.category.LAUNCHER" /> |
| <category android:name="android.intent.category.BROWSABLE" /> |
| </intent-filter> |
| </activity-alias> |
| |
| <activity android:name="ViewContact" |
| android:label="@string/viewContactDesription" |
| android:theme="@style/TallTitleBarTheme" |
| > |
| <intent-filter> |
| <action android:name="android.intent.action.VIEW" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" /> |
| <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" /> |
| </intent-filter> |
| </activity> |
| |
| <activity android:name="HomeXLarge" |
| android:label="@string/app_name_xlarge" |
| android:theme="@android:style/Theme.WithActionBar" |
| /> |
| |
| <activity android:name="HomeGroupsXLarge" |
| android:label="@string/app_name_xlarge_groups" |
| android:theme="@android:style/Theme.WithActionBar" |
| /> |
| |
| <activity android:name="HomeNormal" |
| android:label="@string/app_name_normal" |
| /> |
| |
| <activity android:name="DetailsNormal" |
| android:theme="@style/TallTitleBarTheme" |
| /> |
| </application> |
| </manifest> |