1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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    <!-- Far-left screen [0] -->
19
20    <!-- Left screen [1] -->
21    <appwidget
22        launcher:packageName="com.android.settings"
23        launcher:className="com.android.settings.widget.SettingsAppWidgetProvider"
24        launcher:screen="1"
25        launcher:x="0"
26        launcher:y="3"
27        launcher:spanX="4"
28        launcher:spanY="1" />
29
30    <!-- Middle screen [2] -->
31    <appwidget
32        launcher:packageName="com.android.deskclock"
33        launcher:className="com.android.alarmclock.AnalogAppWidgetProvider"
34        launcher:screen="2"
35        launcher:x="1"
36        launcher:y="0"
37        launcher:spanX="2"
38        launcher:spanY="2" />
39    <favorite
40        launcher:packageName="com.android.camera2"
41        launcher:className="com.android.camera.CameraLauncher"
42        launcher:screen="2"
43        launcher:x="0"
44        launcher:y="3" />
45
46    <!-- Right screen [3] -->
47    <favorite
48        launcher:packageName="com.android.gallery3d"
49        launcher:className="com.android.gallery3d.app.Gallery"
50        launcher:screen="3"
51        launcher:x="1"
52        launcher:y="3" />
53    <favorite
54        launcher:packageName="com.android.settings"
55        launcher:className="com.android.settings.Settings"
56        launcher:screen="3"
57        launcher:x="2"
58        launcher:y="3" />
59
60    <!-- Far-right screen [4] -->
61
62    <!-- Hotseat (We use the screen as the position of the item in the hotseat) -->
63    <favorite
64        launcher:packageName="com.android.dialer"
65        launcher:className="com.android.dialer.DialtactsActivity"
66        launcher:container="-101"
67        launcher:screen="0"
68        launcher:x="0"
69        launcher:y="0" />
70    <favorite
71        launcher:packageName="com.android.contacts"
72        launcher:className="com.android.contacts.activities.PeopleActivity"
73        launcher:container="-101"
74        launcher:screen="1"
75        launcher:x="1"
76        launcher:y="0" />
77    <favorite
78        launcher:packageName="com.android.mms"
79        launcher:className="com.android.mms.ui.ConversationList"
80        launcher:container="-101"
81        launcher:screen="3"
82        launcher:x="3"
83        launcher:y="0" />
84    <favorite
85        launcher:packageName="com.android.browser"
86        launcher:className="com.android.browser.BrowserActivity"
87        launcher:container="-101"
88        launcher:screen="4"
89        launcher:x="4"
90        launcher:y="0" />
91</favorites>
92