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 <!-- Hotseat (We use the screen as the position of the item in the hotseat) --> 19 <!-- Messaging, Email, Browser, [All Apps], Music, Gallery, Camera --> 20 <resolve 21 launcher:container="-101" 22 launcher:screen="0" 23 launcher:x="0" 24 launcher:y="0" > 25 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MESSAGING;end" /> 26 <favorite launcher:uri="sms:" /> 27 <favorite launcher:uri="smsto:" /> 28 <favorite launcher:uri="mms:" /> 29 <favorite launcher:uri="mmsto:" /> 30 </resolve> 31 32 <resolve 33 launcher:container="-101" 34 launcher:screen="1" 35 launcher:x="1" 36 launcher:y="0" > 37 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_EMAIL;end" /> 38 <favorite launcher:uri="mailto:" /> 39 </resolve> 40 41 <resolve 42 launcher:container="-101" 43 launcher:screen="2" 44 launcher:x="2" 45 launcher:y="0" > 46 <favorite 47 launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_BROWSER;end" /> 48 <favorite launcher:uri="http://www.example.com/" /> 49 </resolve> 50 51 <!-- All Apps --> 52 53 <favorite 54 launcher:container="-101" 55 launcher:screen="4" 56 launcher:x="4" 57 launcher:y="0" 58 launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MUSIC;end" /> 59 60 <resolve 61 launcher:container="-101" 62 launcher:screen="5" 63 launcher:x="5" 64 launcher:y="0" > 65 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_GALLERY;end" /> 66 <favorite launcher:uri="#Intent;type=images/*;end" /> 67 </resolve> 68 69 <resolve 70 launcher:container="-101" 71 launcher:screen="6" 72 launcher:x="6" 73 launcher:y="0" > 74 <favorite launcher:uri="#Intent;action=android.media.action.STILL_IMAGE_CAMERA;end" /> 75 <favorite launcher:uri="#Intent;action=android.intent.action.CAMERA_BUTTON;end" /> 76 </resolve> 77 78</favorites> 79