1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2022 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<LinearLayout 17 xmlns:android="http://schemas.android.com/apk/res/android" 18 android:layout_width="match_parent" 19 android:layout_height="match_parent" 20 android:orientation="horizontal" > 21 22 <!-- Column 1: app info --> 23 <LinearLayout 24 android:layout_width="wrap_content" 25 android:layout_height="match_parent" 26 android:orientation="vertical" > 27 <TextView 28 android:layout_width="match_parent" 29 android:layout_height="wrap_content" 30 android:text="App info"/> 31 <LinearLayout 32 android:layout_width="match_parent" 33 android:layout_height="wrap_content" 34 android:orientation="horizontal" > 35 <TextView 36 android:layout_width="wrap_content" 37 android:layout_height="match_parent" 38 android:text="Target SDK:"/> 39 <TextView 40 android:layout_width="wrap_content" 41 android:layout_height="match_parent" 42 android:id="@+id/app_target_sdk" 43 android:text="N/A"/> 44 </LinearLayout> 45 <LinearLayout 46 android:layout_width="match_parent" 47 android:layout_height="wrap_content" 48 android:orientation="horizontal" > 49 <TextView 50 android:layout_width="wrap_content" 51 android:layout_height="match_parent" 52 android:text="Compilation SDK:"/> 53 <TextView 54 android:layout_width="wrap_content" 55 android:layout_height="match_parent" 56 android:id="@+id/app_compilation_sdk" 57 android:text="N/A"/> 58 </LinearLayout> 59 <TextView 60 android:layout_width="match_parent" 61 android:layout_height="wrap_content" 62 android:orientation="horizontal" 63 android:text="Car Target APIs"/> 64 <LinearLayout 65 android:layout_width="match_parent" 66 android:layout_height="wrap_content" 67 android:orientation="horizontal" > 68 <TextView 69 android:layout_width="wrap_content" 70 android:layout_height="match_parent" 71 android:text="Major:"/> 72 <TextView 73 android:layout_width="wrap_content" 74 android:layout_height="match_parent" 75 android:id="@+id/app_car_target_major_sdk" 76 android:text="N/A"/> 77 </LinearLayout> 78 <LinearLayout 79 android:layout_width="match_parent" 80 android:layout_height="wrap_content" 81 android:orientation="horizontal" > 82 <TextView 83 android:layout_width="wrap_content" 84 android:layout_height="match_parent" 85 android:text="Minor:"/> 86 <TextView 87 android:layout_width="wrap_content" 88 android:layout_height="match_parent" 89 android:id="@+id/app_car_target_minor_sdk" 90 android:text="N/A"/> 91 </LinearLayout> 92 </LinearLayout> 93 94 <!-- Column 2: platform info --> 95 <LinearLayout 96 android:layout_width="wrap_content" 97 android:layout_height="match_parent" 98 android:orientation="vertical" > 99 <TextView 100 android:layout_width="match_parent" 101 android:layout_height="wrap_content" 102 android:text="Platform info"/> 103 <LinearLayout 104 android:layout_width="match_parent" 105 android:layout_height="wrap_content" 106 android:orientation="horizontal" > 107 <TextView 108 android:layout_width="wrap_content" 109 android:layout_height="match_parent" 110 android:text="SDK API Codename:"/> 111 <TextView 112 android:layout_width="wrap_content" 113 android:layout_height="match_parent" 114 android:id="@+id/android_sdk_codename" 115 android:text="N/A"/> 116 </LinearLayout> 117 <LinearLayout 118 android:layout_width="match_parent" 119 android:layout_height="wrap_content" 120 android:orientation="horizontal" > 121 <TextView 122 android:layout_width="wrap_content" 123 android:layout_height="match_parent" 124 android:text="SDK API Version:"/> 125 <TextView 126 android:layout_width="wrap_content" 127 android:layout_height="match_parent" 128 android:id="@+id/android_sdk_version" 129 android:text="N/A"/> 130 </LinearLayout> 131 <LinearLayout 132 android:layout_width="match_parent" 133 android:layout_height="wrap_content" 134 android:orientation="horizontal" > 135 <TextView 136 android:layout_width="wrap_content" 137 android:layout_height="match_parent" 138 android:text="CAR_PLATFORM_VERSION:"/> 139 <TextView 140 android:layout_width="wrap_content" 141 android:layout_height="match_parent" 142 android:id="@+id/platform_version" 143 android:text="N/A"/> 144 </LinearLayout> 145 <LinearLayout 146 android:layout_width="match_parent" 147 android:layout_height="wrap_content" 148 android:orientation="horizontal" > 149 <TextView 150 android:layout_width="wrap_content" 151 android:layout_height="match_parent" 152 android:text="CAR_API_VERSION:"/> 153 <TextView 154 android:layout_width="wrap_content" 155 android:layout_height="match_parent" 156 android:id="@+id/car_version" 157 android:text="N/A"/> 158 </LinearLayout> 159 <LinearLayout 160 android:layout_width="match_parent" 161 android:layout_height="wrap_content" 162 android:orientation="horizontal" > 163 <TextView 164 android:layout_width="wrap_content" 165 android:layout_height="match_parent" 166 android:text="Car Major API:"/> 167 <TextView 168 android:layout_width="wrap_content" 169 android:layout_height="match_parent" 170 android:id="@+id/car_major_version" 171 android:text="N/A"/> 172 </LinearLayout> 173 <LinearLayout 174 android:layout_width="match_parent" 175 android:layout_height="wrap_content" 176 android:orientation="horizontal" > 177 <TextView 178 android:layout_width="wrap_content" 179 android:layout_height="match_parent" 180 android:text="Car Minor API:"/> 181 <TextView 182 android:layout_width="wrap_content" 183 android:layout_height="match_parent" 184 android:id="@+id/car_minor_version" 185 android:text="N/A"/> 186 </LinearLayout> 187 </LinearLayout> 188</LinearLayout> 189