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: only fixedSize attribute is allowed --> 17<cellSpecs xmlns:launcher="http://schemas.android.com/apk/res-auto"> 18 <!-- portrait --> 19 <specs launcher:maxAspectRatio="1.0"> 20 <cellSpec 21 launcher:dimensionType="height" 22 launcher:maxAvailableSize="9999dp"> 23 <iconDrawablePadding launcher:ofAvailableSpace="0.0125" /> 24 <iconSize launcher:fixedSize="48dp" /> 25 <iconTextSize launcher:fixedSize="12sp" /> 26 </cellSpec> 27 </specs> 28 <!-- landscape --> 29 <specs launcher:maxAspectRatio="10"> 30 <cellSpec 31 launcher:dimensionType="height" 32 launcher:maxAvailableSize="9999dp"> 33 <iconDrawablePadding launcher:fixedSize="0dp" /> 34 <iconSize launcher:ofAvailableSpace="0.0125" /> 35 <iconTextSize launcher:fixedSize="0sp" /> 36 </cellSpec> 37 </specs> 38</cellSpecs>