1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2015 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 <!-- Messaging, [All Apps], Dialer --> 21 22 <resolve 23 launcher:container="-101" 24 launcher:screen="0" 25 launcher:x="0" 26 launcher:y="0" > 27 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MESSAGING;end" /> 28 <favorite launcher:uri="sms:" /> 29 <favorite launcher:uri="smsto:" /> 30 <favorite launcher:uri="mms:" /> 31 <favorite launcher:uri="mmsto:" /> 32 </resolve> 33 34 <!-- All Apps --> 35 36 <resolve 37 launcher:container="-101" 38 launcher:screen="2" 39 launcher:x="2" 40 launcher:y="0" > 41 <favorite launcher:uri="#Intent;action=android.intent.action.DIAL;end" /> 42 <favorite launcher:uri="tel:123" /> 43 <favorite launcher:uri="#Intent;action=android.intent.action.CALL_BUTTON;end" /> 44 </resolve> 45 46 <!-- Bottom row --> 47 <resolve 48 launcher:screen="0" 49 launcher:x="0" 50 launcher:y="-1" > 51 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_EMAIL;end" /> 52 <favorite launcher:uri="mailto:" /> 53 </resolve> 54 55 <resolve 56 launcher:screen="0" 57 launcher:x="1" 58 launcher:y="-1" > 59 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_GALLERY;end" /> 60 <favorite launcher:uri="#Intent;type=images/*;end" /> 61 </resolve> 62 63 <resolve 64 launcher:screen="0" 65 launcher:x="2" 66 launcher:y="-1" > 67 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MARKET;end" /> 68 <favorite launcher:uri="market://details?id=com.android.launcher" /> 69 </resolve> 70 71</favorites> 72