1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright 2024 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License. 16 --> 17<bookmarks> 18 <!-- The key combinations for the following shortcuts are legacy way defining bookmarks and we 19 should prefer new way of defining bookmarks as shown in {@link bookmarks.xml} --> 20 <bookmark 21 role="android.app.role.BROWSER" 22 shortcut="b" /> 23 <bookmark 24 category="android.intent.category.APP_CONTACTS" 25 shortcut="p" /> 26 <bookmark 27 category="android.intent.category.APP_EMAIL" 28 shortcut="e" /> 29 <bookmark 30 category="android.intent.category.APP_CALENDAR" 31 shortcut="c" /> 32 <bookmark 33 category="android.intent.category.APP_MAPS" 34 shortcut="m" /> 35 <bookmark 36 category="android.intent.category.APP_CALCULATOR" 37 shortcut="u" /> 38 39 <bookmark 40 role="android.app.role.BROWSER" 41 shortcut="b" 42 shift="true" /> 43 44 <bookmark 45 category="android.intent.category.APP_CONTACTS" 46 shortcut="p" 47 shift="true" /> 48 49 <bookmark 50 package="com.test" 51 class="com.test.BookmarkTest" 52 shortcut="j" 53 shift="true" /> 54</bookmarks> 55