1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2011 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<favorites xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"> 18 <!-- Update the db with new hotseat items. Note that we reference the browser's original 19 package name. --> 20 <!-- Hotseat (We use the screen as the position of the item in the hotseat) --> 21 <favorite 22 launcher:packageName="com.android.dialer" 23 launcher:className="com.android.dialer.DialtactsActivity" 24 launcher:container="-101" 25 launcher:screen="0" 26 launcher:x="0" 27 launcher:y="0" /> 28 <favorite 29 launcher:packageName="com.android.contacts" 30 launcher:className="com.android.contacts.activities.PeopleActivity" 31 launcher:container="-101" 32 launcher:screen="1" 33 launcher:x="1" 34 launcher:y="0" /> 35 <favorite 36 launcher:packageName="com.android.mms" 37 launcher:className="com.android.mms.ui.ConversationList" 38 launcher:container="-101" 39 launcher:screen="3" 40 launcher:x="3" 41 launcher:y="0" /> 42 <favorite 43 launcher:packageName="com.android.browser" 44 launcher:className="com.android.browser.BrowserActivity" 45 launcher:container="-101" 46 launcher:screen="4" 47 launcher:x="4" 48 launcher:y="0" /> 49</favorites> 50