bookmarks.xml revision caab4d0a509a5283b65d7c44e66b0dc7b89a6d7c
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 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<!--
18     Default system bookmarks for AOSP.
19     Bookmarks for vendor apps should be added to a bookmarks resource overlay; not here.
20
21     Typical shortcuts (not necessarily defined here):
22       'b': Browser
23       'c': Contacts
24       'e': Email
25       'g': GMail
26       'l': Calendar
27       'm': Maps
28       'p': Music
29       's': SMS
30       't': Talk
31       'y': YouTube
32-->
33<bookmarks>
34    <bookmark
35        package="com.android.browser"
36        class="com.android.browser.BrowserActivity"
37        shortcut="b" />
38    <bookmark
39        package="com.android.contacts"
40        class="com.android.contacts.activities.ContactsFrontDoor"
41        shortcut="c" />
42    <bookmark
43        package="com.google.android.email"
44        class="com.android.email.activity.Welcome"
45        shortcut="e" />
46    <bookmark
47        package="com.google.android.calendar"
48        class="com.android.calendar.LaunchActivity"
49        shortcut="l" />
50    <bookmark
51        package="com.android.music"
52        class="com.android.music.MusicBrowserActivity"
53        shortcut="p" />
54    <bookmark
55        package="com.android.mms"
56        class="com.android.mms.ui.ConversationList"
57        shortcut="s" />
58</bookmarks>
59