1<?xml version="1.0" encoding="utf-8"?><!-- 2 ~ Copyright (C) 2023 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<!-- invalid file - groups (specs) applied only for half of the specs --> 17<workspaceSpecs xmlns:launcher="http://schemas.android.com/apk/res-auto"> 18 <specs launcher:maxAspectRatio="10"> 19 <workspaceSpec 20 launcher:maxAvailableSize="9999dp" 21 launcher:dimensionType="height"> 22 <cellSize launcher:fixedSize="104dp" /> 23 <endPadding launcher:ofRemainderSpace="1" /> 24 <gutter launcher:fixedSize="16dp" /> 25 <startPadding launcher:fixedSize="8dp" /> 26 </workspaceSpec> 27 28 <workspaceSpec 29 launcher:maxAvailableSize="9999dp" 30 launcher:dimensionType="width"> 31 <cellSize launcher:ofRemainderSpace="1" /> 32 <endPadding launcher:fixedSize="22dp" /> 33 <gutter launcher:fixedSize="16dp" /> 34 <startPadding launcher:fixedSize="22dp" /> 35 </workspaceSpec> 36 </specs> 37 38 <workspaceSpec 39 launcher:maxAvailableSize="9999dp" 40 launcher:dimensionType="width"> 41 <cellSize launcher:ofRemainderSpace="1" /> 42 <endPadding launcher:fixedSize="22dp" /> 43 <gutter launcher:fixedSize="16dp" /> 44 <startPadding launcher:fixedSize="22dp" /> 45 </workspaceSpec> 46 <workspaceSpec 47 launcher:maxAvailableSize="9999dp" 48 launcher:dimensionType="height"> 49 <cellSize launcher:fixedSize="104dp" /> 50 <endPadding launcher:ofRemainderSpace="1" /> 51 <gutter launcher:fixedSize="16dp" /> 52 <startPadding launcher:fixedSize="8dp" /> 53 </workspaceSpec> 54</workspaceSpecs> 55