1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2025 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16--> 17<!-- Google-specific version of Launcher3/res/xml/default_workspace.xml --> 18<favorites xmlns:launcher="http://schemas.android.com/apk/res-auto/com.android.launcher3" > 19 20 <!-- Hotseat (We use the screen as the position of the item in the hotseat) --> 21 <!-- Dialer Messaging Play Chrome Camera --> 22 <favorite 23 launcher:container="-101" 24 launcher:screen="0" 25 launcher:x="0" 26 launcher:y="0" 27 launcher:className="com.google.android.dialer.extensions.GoogleDialtactsActivity" 28 launcher:packageName="com.google.android.dialer" /> 29 30 <favorite 31 launcher:container="-101" 32 launcher:screen="1" 33 launcher:x="1" 34 launcher:y="0" 35 launcher:className="com.google.android.apps.messaging.ui.ConversationListActivity" 36 launcher:packageName="com.google.android.apps.messaging" /> 37 38 <favorite 39 launcher:container="-101" 40 launcher:screen="2" 41 launcher:x="2" 42 launcher:y="0" 43 launcher:className="com.android.vending.AssetBrowserActivity" 44 launcher:packageName="com.android.vending" /> 45 46 <favorite 47 launcher:container="-101" 48 launcher:screen="3" 49 launcher:x="3" 50 launcher:y="0" 51 launcher:className="com.google.android.apps.chrome.Main" 52 launcher:packageName="com.android.chrome" /> 53 54 <!-- Resolve camera intent if GoogleCamera is not available e.g. on emulator --> 55 <resolve 56 launcher:container="-101" 57 launcher:screen="4" 58 launcher:x="4" 59 launcher:y="0" > 60 <favorite 61 launcher:className="com.android.camera.CameraLauncher" 62 launcher:packageName="com.google.android.GoogleCamera" /> 63 <favorite launcher:uri="#Intent;action=android.media.action.STILL_IMAGE_CAMERA;end" /> 64 <favorite launcher:uri="#Intent;action=android.intent.action.CAMERA_BUTTON;end" /> 65 </resolve> 66 67 <!-- Bottom row --> 68 <!-- [space] [space] [space] [space] [space] --> 69 70</favorites> 71