1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2013 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 <!-- Dialer Hangouts Maps Chrome Camera --> 20 <favorite 21 launcher:packageName="com.google.android.dialer" 22 launcher:className="com.google.android.dialer.extensions.GoogleDialtactsActivity" 23 launcher:container="-101" 24 launcher:screen="0" 25 launcher:x="0" 26 launcher:y="0" /> 27 <favorite 28 launcher:packageName="com.google.android.talk" 29 launcher:className="com.google.android.talk.SigningInActivity" 30 launcher:container="-101" 31 launcher:screen="1" 32 launcher:x="1" 33 launcher:y="0" /> 34 <favorite 35 launcher:packageName="com.google.android.apps.maps" 36 launcher:className="com.google.android.maps.MapsActivity" 37 launcher:container="-101" 38 launcher:screen="2" 39 launcher:x="2" 40 launcher:y="0"/> 41 <favorite 42 launcher:packageName="com.android.chrome" 43 launcher:className="com.google.android.apps.chrome.Main" 44 launcher:container="-101" 45 launcher:screen="3" 46 launcher:x="3" 47 launcher:y="0" /> 48 <favorite 49 launcher:packageName="com.google.android.GoogleCamera" 50 launcher:className="com.android.camera.CameraLauncher" 51 launcher:container="-101" 52 launcher:screen="4" 53 launcher:x="4" 54 launcher:y="0" /> 55 </favorites> 56 57