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-auto/com.android.launcher3">
18
19    <!-- Hotseat (We use the screen as the position of the item in the hotseat) -->
20    <!-- Dialer, Messaging, [Maps/Music], Browser, Camera -->
21    <resolve
22        launcher:container="-101"
23        launcher:screen="0"
24        launcher:x="0"
25        launcher:y="0" >
26        <favorite launcher:uri="#Intent;action=android.intent.action.DIAL;end" />
27        <favorite launcher:uri="tel:123" />
28        <favorite launcher:uri="#Intent;action=android.intent.action.CALL_BUTTON;end" />
29    </resolve>
30
31    <resolve
32        launcher:container="-101"
33        launcher:screen="1"
34        launcher:x="1"
35        launcher:y="0" >
36        <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MESSAGING;end" />
37        <favorite launcher:uri="sms:" />
38        <favorite launcher:uri="smsto:" />
39        <favorite launcher:uri="mms:" />
40        <favorite launcher:uri="mmsto:" />
41    </resolve>
42
43    <resolve
44        launcher:container="-101"
45        launcher:screen="2"
46        launcher:x="2"
47        launcher:y="0" >
48        <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MAPS;end" />
49        <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MUSIC;end" />
50    </resolve>
51
52    <resolve
53        launcher:container="-101"
54        launcher:screen="3"
55        launcher:x="3"
56        launcher:y="0" >
57        <favorite
58            launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_BROWSER;end" />
59        <favorite launcher:uri="http://www.example.com/" />
60    </resolve>
61
62    <resolve
63        launcher:container="-101"
64        launcher:screen="4"
65        launcher:x="4"
66        launcher:y="0" >
67        <favorite launcher:uri="#Intent;action=android.media.action.STILL_IMAGE_CAMERA;end" />
68        <favorite launcher:uri="#Intent;action=android.intent.action.CAMERA_BUTTON;end" />
69    </resolve>
70
71    <!-- Bottom row -->
72    <resolve
73        launcher:screen="0"
74        launcher:x="0"
75        launcher:y="-1" >
76	    <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_EMAIL;end" />
77	    <favorite launcher:uri="mailto:" />
78
79    </resolve>
80
81    <resolve
82        launcher:screen="0"
83        launcher:x="1"
84        launcher:y="-1" >
85	    <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_GALLERY;end" />
86	    <favorite launcher:uri="#Intent;type=images/*;end" />
87
88    </resolve>
89
90    <resolve
91        launcher:screen="0"
92        launcher:x="4"
93        launcher:y="-1" >
94        <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MARKET;end" />
95        <favorite launcher:uri="market://details?id=com.android.launcher" />
96    </resolve>
97</favorites>
98