summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorVikram Aggarwal <viki@google.com>2011-12-19 08:14:16 -0800
committerVikram Aggarwal <viki@google.com>2012-01-03 15:12:15 -0800
commit5e5ac748eadbb17eee84b39a424b8b9270ade46c (patch)
treee3b623254fbbe038fc00e1bb8b593fc10328faa3 /AndroidManifest.xml
parent44b3288d6edb01259b44e831f9dc2b3e0f762785 (diff)
downloadandroid_packages_apps_UnifiedEmail-5e5ac748eadbb17eee84b39a424b8b9270ade46c.tar.gz
android_packages_apps_UnifiedEmail-5e5ac748eadbb17eee84b39a424b8b9270ade46c.tar.bz2
android_packages_apps_UnifiedEmail-5e5ac748eadbb17eee84b39a424b8b9270ade46c.zip
Adding the ActionBar to the unified codebase.
Change-Id: I4067b55aa2d7a020b682567dcd2355a4e7d91450
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml50
1 files changed, 36 insertions, 14 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index eda7ba0f2..126e7c4fc 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,30 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2012 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.email"
- android:versionCode="1"
- android:versionName="1.0">
+ package="com.android.email"
+ android:versionCode="1"
+ android:versionName="1.0" >
- <application android:icon="@mipmap/ic_launcher_mail"
+ <application
+ android:icon="@mipmap/ic_launcher_mail"
android:label="@string/app_name"
- android:theme="@android:style/Theme.Holo.Light">
- <activity android:name=".UnifiedEmail"
- android:label="@string/app_name">
- <intent-filter>
+ android:theme="@android:style/Theme.Holo.Light" >
+ <activity
+ android:label="@string/app_name"
+ android:name=".UnifiedEmail" >
+ <intent-filter >
<action android:name="android.intent.action.MAIN" />
+
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
-
<activity android:name=".compose.ComposeActivity" />
- <activity android:name=".browse.LabelItem" />
<activity android:name=".browse.ConversationListActivity" />
+ <activity android:name=".browse.FolderItem" />
<activity android:name=".EmailActivity" />
+ <activity
+ android:name=".browse.ActionbarActivity"
+ android:uiOptions="splitActionBarWhenNarrow" />
- <provider android:name=".providers.protos.mock.MockUiProvider"
- android:authorities="com.android.mail.mockprovider"
- android:label="@string/mock_content_provider"
- android:multiprocess="false" >
+ <provider
+ android:authorities="com.android.mail.mockprovider"
+ android:label="@string/mock_content_provider"
+ android:multiprocess="false"
+ android:name=".providers.protos.mock.MockUiProvider" >
<grant-uri-permission android:pathPattern=".*" />
</provider>
</application>
+
</manifest>