1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2021 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    <!-- Mail Calendar Gallery Store Internet 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.MAIN;category=android.intent.category.APP_EMAIL;end" />
27        <favorite launcher:uri="mailto:" />
28    </resolve>
29
30    <resolve
31        launcher:container="-101"
32        launcher:screen="1"
33        launcher:x="1"
34        launcher:y="0" >
35        <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_CALENDAR;end" />
36    </resolve>
37
38    <resolve
39        launcher:container="-101"
40        launcher:screen="2"
41        launcher:x="2"
42        launcher:y="0" >
43        <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_GALLERY;end" />
44        <favorite launcher:uri="#Intent;type=images/*;end" />
45    </resolve>
46
47    <resolve
48        launcher:container="-101"
49        launcher:screen="3"
50        launcher:x="3"
51        launcher:y="0" >
52        <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MARKET;end" />
53        <favorite launcher:uri="market://details?id=com.android.launcher" />
54    </resolve>
55
56    <resolve
57        launcher:container="-101"
58        launcher:screen="4"
59        launcher:x="4"
60        launcher:y="0" >
61        <favorite
62            launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_BROWSER;end" />
63        <favorite launcher:uri="http://www.example.com/" />
64    </resolve>
65
66    <!-- Resolve camera intent if GoogleCamera is not available e.g. on emulator -->
67    <resolve
68        launcher:container="-101"
69        launcher:screen="5"
70        launcher:x="5"
71        launcher:y="0" >
72        <favorite launcher:uri="#Intent;action=android.media.action.STILL_IMAGE_CAMERA;end" />
73        <favorite launcher:uri="#Intent;action=android.intent.action.CAMERA_BUTTON;end" />
74    </resolve>
75
76</favorites>
77