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       'k': Calendar
27       'm': Maps
28       'p': Music
29       's': SMS
30       't': Talk
31       'u': Calculator
32       'y': YouTube
33-->
34<bookmarks>
35    <bookmark
36        role="android.app.role.BROWSER"
37        shortcut="b" />
38    <bookmark
39        category="android.intent.category.APP_CONTACTS"
40        shortcut="c" />
41    <bookmark
42        category="android.intent.category.APP_EMAIL"
43        shortcut="e" />
44    <bookmark
45        category="android.intent.category.APP_CALENDAR"
46        shortcut="k" />
47    <bookmark
48        category="android.intent.category.APP_MAPS"
49        shortcut="m" />
50    <bookmark
51        category="android.intent.category.APP_MUSIC"
52        shortcut="p" />
53    <bookmark
54        role="android.app.role.SMS"
55        shortcut="s" />
56    <bookmark
57        category="android.intent.category.APP_CALCULATOR"
58        shortcut="u" />
59</bookmarks>
60