blob: bf3c62c77d00cd7ecca379f64f7f0ce7079e736e [file] [log] [blame]
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001<?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
Daniel Sandler325dc232013-06-05 22:57:57 -040017<favorites xmlns:launcher="http://schemas.android.com/apk/res-auto/com.android.launcher3">
The Android Open Source Projectf96811c2009-03-18 17:39:48 -070018
Sunny Goyal415f1732018-11-29 10:33:47 -080019 <!-- Hotseat (We use the screen as the position of the item in the hotseat) -->
20 <!-- Dialer, Messaging, 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
49 launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_BROWSER;end" />
50 <favorite launcher:uri="http://www.example.com/" />
51 </resolve>
52
53 <resolve
54 launcher:container="-101"
55 launcher:screen="3"
56 launcher:x="3"
57 launcher:y="0" >
58 <favorite launcher:uri="#Intent;action=android.media.action.STILL_IMAGE_CAMERA;end" />
59 <favorite launcher:uri="#Intent;action=android.intent.action.CAMERA_BUTTON;end" />
60 </resolve>
The Android Open Source Projectf96811c2009-03-18 17:39:48 -070061
Sunny Goyalfb0f1092015-08-04 16:02:52 -070062 <!-- Bottom row -->
Jason Monk41314972014-03-03 16:11:30 -050063 <resolve
Winson Chungf30ad5f2011-08-08 10:55:42 -070064 launcher:screen="0"
65 launcher:x="0"
Sunny Goyal96a09632015-12-16 11:32:54 -080066 launcher:y="-1" >
Sunny Goyalfb0f1092015-08-04 16:02:52 -070067 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_EMAIL;end" />
68 <favorite launcher:uri="mailto:" />
Jason Monk41314972014-03-03 16:11:30 -050069 </resolve>
70
Sunny Goyalfb0f1092015-08-04 16:02:52 -070071 <resolve
72 launcher:screen="0"
Winson Chungf30ad5f2011-08-08 10:55:42 -070073 launcher:x="1"
Sunny Goyal96a09632015-12-16 11:32:54 -080074 launcher:y="-1" >
Sunny Goyalfb0f1092015-08-04 16:02:52 -070075 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_GALLERY;end" />
76 <favorite launcher:uri="#Intent;type=images/*;end" />
Jason Monk41314972014-03-03 16:11:30 -050077 </resolve>
Jason Monk41314972014-03-03 16:11:30 -050078
Sunny Goyalfb0f1092015-08-04 16:02:52 -070079 <resolve
80 launcher:screen="0"
81 launcher:x="3"
Sunny Goyal96a09632015-12-16 11:32:54 -080082 launcher:y="-1" >
Sunny Goyalfb0f1092015-08-04 16:02:52 -070083 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MARKET;end" />
84 <favorite launcher:uri="market://details?id=com.android.launcher" />
Jason Monk41314972014-03-03 16:11:30 -050085 </resolve>
86
The Android Open Source Projectf96811c2009-03-18 17:39:48 -070087</favorites>