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