keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2015 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 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 18 | xmlns:androidprv="http://schemas.android.com/apk/prv/res/android" |
| 19 | package="com.android.car" |
| 20 | coreApp="true" |
| 21 | android:sharedUserId="android.uid.system"> |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 22 | |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 23 | <original-package android:name="com.android.car"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 24 | |
| 25 | <!-- Used for runtime permissions related to monitoring vehicle information. --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 26 | <permission-group android:name="android.car.permission-group.CAR_MONITORING" |
| 27 | android:icon="@drawable/perm_group_car" |
| 28 | android:description="@string/car_permission_desc" |
| 29 | android:label="@string/car_permission_label"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 30 | |
| 31 | <!-- Allows an application to read the vehicle energy information. |
| 32 | <p>Protection level: dangerous |
| 33 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 34 | <permission android:name="android.car.permission.CAR_ENERGY" |
| 35 | android:permissionGroup="android.car.permission-group.CAR_MONITORING" |
| 36 | android:protectionLevel="dangerous" |
| 37 | android:label="@string/car_permission_label_energy" |
| 38 | android:description="@string/car_permission_desc_energy"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 39 | |
Kai | 8e3dad5 | 2019-07-25 14:14:07 -0700 | [diff] [blame] | 40 | <!-- Allows an application to adjust the vehicle's range remaining information. |
| 41 | <p>Protection level: signature|privileged |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 42 | --> |
| 43 | <permission android:name="android.car.permission.ADJUST_RANGE_REMAINING" |
| 44 | android:protectionLevel="signature|privileged" |
| 45 | android:label="@string/car_permission_label_adjust_range_remaining" |
| 46 | android:description="@string/car_permission_desc_adjust_range_remaining"/> |
Kai | 8e3dad5 | 2019-07-25 14:14:07 -0700 | [diff] [blame] | 47 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 48 | <!-- Allows an application to read the VIN information. |
| 49 | <p>Protection level: signature|privileged |
| 50 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 51 | <permission android:name="android.car.permission.CAR_IDENTIFICATION" |
| 52 | android:protectionLevel="signature|privileged" |
| 53 | android:label="@string/car_permission_label_car_identification" |
| 54 | android:description="@string/car_permission_desc_car_identification"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 55 | |
| 56 | <!-- Allows an application to control the vehicle HVAC. |
| 57 | <p>Protection level: signature|privileged |
| 58 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 59 | <permission android:name="android.car.permission.CONTROL_CAR_CLIMATE" |
| 60 | android:protectionLevel="signature|privileged" |
| 61 | android:label="@string/car_permission_label_hvac" |
| 62 | android:description="@string/car_permission_desc_hvac"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 63 | |
| 64 | <!-- Allows an application to control the vehicle doors. |
| 65 | <p>Protection level: signature|privileged |
| 66 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 67 | <permission android:name="android.car.permission.CONTROL_CAR_DOORS" |
| 68 | android:protectionLevel="signature|privileged" |
| 69 | android:label="@string/car_permission_label_control_car_doors" |
| 70 | android:description="@string/car_permission_desc_control_car_doors"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 71 | |
| 72 | <!-- Allows an application to control the vehicle windows. |
| 73 | <p>Protection level: signature|privileged |
| 74 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 75 | <permission android:name="android.car.permission.CONTROL_CAR_WINDOWS" |
| 76 | android:protectionLevel="signature|privileged" |
| 77 | android:label="@string/car_permission_label_control_car_windows" |
| 78 | android:description="@string/car_permission_desc_control_car_windows"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 79 | |
| 80 | <!-- Allows an application to control the vehicle mirrors. |
| 81 | <p>Protection level: signature|privileged |
| 82 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 83 | <permission android:name="android.car.permission.CONTROL_CAR_MIRRORS" |
| 84 | android:protectionLevel="signature|privileged" |
| 85 | android:label="@string/car_permission_label_control_car_mirrors" |
| 86 | android:description="@string/car_permission_desc_control_car_mirrors"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 87 | |
| 88 | <!-- Allows an application to control the vehicle seats. |
| 89 | <p>Protection level: signature|privileged |
| 90 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 91 | <permission android:name="android.car.permission.CONTROL_CAR_SEATS" |
| 92 | android:protectionLevel="signature|privileged" |
| 93 | android:label="@string/car_permission_label_control_car_seats" |
| 94 | android:description="@string/car_permission_desc_control_car_seats"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 95 | |
| 96 | <!-- Allows an application to read the vehicle mileage information. |
| 97 | <p>Protection level: signature|privileged |
| 98 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 99 | <permission android:name="android.car.permission.CAR_MILEAGE" |
| 100 | android:protectionLevel="signature|privileged" |
| 101 | android:label="@string/car_permission_label_mileage" |
| 102 | android:description="@string/car_permission_desc_mileage"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 103 | |
| 104 | <!-- Allows an application to read the vehicle tire pressure information. |
| 105 | <p>Protection level: signature|privileged |
| 106 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 107 | <permission android:name="android.car.permission.CAR_TIRES" |
| 108 | android:protectionLevel="signature|privileged" |
| 109 | android:label="@string/car_permission_label_car_tires" |
| 110 | android:description="@string/car_permission_desc_car_tires"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 111 | |
| 112 | <!-- Allows an application to read the vehicle steering angle information. |
| 113 | <p>Protection level: signature|privileged |
| 114 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 115 | <permission android:name="android.car.permission.READ_CAR_STEERING" |
| 116 | android:protectionLevel="signature|privileged" |
| 117 | android:label="@string/car_permission_label_car_steering" |
| 118 | android:description="@string/car_permission_desc_car_steering"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 119 | |
| 120 | <!-- Allows an application to read the display units for distance, fuel, tire pressure, |
| 121 | EV battery and fuel consumption. |
| 122 | <p>Protection level: normal |
| 123 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 124 | <permission android:name="android.car.permission.READ_CAR_DISPLAY_UNITS" |
| 125 | android:protectionLevel="normal" |
| 126 | android:label="@string/car_permission_label_read_car_display_units" |
| 127 | android:description="@string/car_permission_desc_read_car_display_units"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 128 | |
| 129 | <!-- Allows an application to control the display units for distance, fuel, tire pressure, |
| 130 | EV battery and fuel consumption. |
| 131 | <p>Protection level: normal |
| 132 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 133 | <permission android:name="android.car.permission.CONTROL_CAR_DISPLAY_UNITS" |
| 134 | android:protectionLevel="normal" |
| 135 | android:label="@string/car_permission_label_control_car_display_units" |
| 136 | android:description="@string/car_permission_desc_control_car_display_units"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 137 | |
| 138 | <!-- Allows an application to read the vehicle speed. |
| 139 | <p>Protection level: dangerous |
| 140 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 141 | <permission android:name="android.car.permission.CAR_SPEED" |
| 142 | android:permissionGroup="android.permission-group.LOCATION" |
| 143 | android:protectionLevel="dangerous" |
| 144 | android:label="@string/car_permission_label_speed" |
| 145 | android:description="@string/car_permission_desc_speed"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 146 | |
| 147 | <!-- Allows an application to read the vehicle fuel and charge port status. |
| 148 | <p>Protection level: normal |
| 149 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 150 | <permission android:name="android.car.permission.CAR_ENERGY_PORTS" |
| 151 | android:protectionLevel="normal" |
| 152 | android:label="@string/car_permission_label_car_energy_ports" |
| 153 | android:description="@string/car_permission_desc_car_energy_ports"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 154 | |
Kai | 0c0fd0d | 2019-10-22 16:02:02 -0700 | [diff] [blame] | 155 | <!-- Allows an application to control the vehicle fuel and charge port status. |
| 156 | <p>Protection level: signature|privileged |
| 157 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 158 | <permission android:name="android.car.permission.CONTROL_CAR_ENERGY_PORTS" |
| 159 | android:protectionLevel="signature|privileged" |
| 160 | android:label="@string/car_permission_label_control_car_energy_ports" |
| 161 | android:description="@string/car_permission_desc_control_car_energy_ports"/> |
Kai | 0c0fd0d | 2019-10-22 16:02:02 -0700 | [diff] [blame] | 162 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 163 | <!-- Allows an application to read the vehicle engine information. For example, it allows an |
| 164 | application to read the engine oil level, oil temperature, coolant temperature and RPM. |
| 165 | <p>Protection level: signature|privileged |
| 166 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 167 | <permission android:name="android.car.permission.CAR_ENGINE_DETAILED" |
| 168 | android:protectionLevel="signature|privileged" |
| 169 | android:label="@string/car_permission_label_car_engine_detailed" |
| 170 | android:description="@string/car_permission_desc_car_engine_detailed"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 171 | |
| 172 | <!-- Allows an application to read the vehicle dynamic state information. For example, it |
| 173 | allows an application to read the ABS and traction control status. |
| 174 | <p>Protection level: signature|privileged |
| 175 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 176 | <permission android:name="android.car.permission.CAR_DYNAMICS_STATE" |
| 177 | android:protectionLevel="signature|privileged" |
| 178 | android:label="@string/car_permission_label_vehicle_dynamics_state" |
| 179 | android:description="@string/car_permission_desc_vehicle_dynamics_state"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 180 | |
| 181 | <!-- Allows an application to access the vehicle vendor channel to exchange vendor-specific information. |
| 182 | <p>Protection level: signature|privileged |
| 183 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 184 | <permission android:name="android.car.permission.CAR_VENDOR_EXTENSION" |
| 185 | android:protectionLevel="signature|privileged" |
| 186 | android:label="@string/car_permission_label_vendor_extension" |
| 187 | android:description="@string/car_permission_desc_vendor_extension"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 188 | |
| 189 | <!-- Allows an application to project an interface from a phone to the vehicle display. |
| 190 | <p>Protection level: signature|privileged |
| 191 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 192 | <permission android:name="android.car.permission.CAR_PROJECTION" |
| 193 | android:protectionLevel="signature|privileged" |
| 194 | android:label="@string/car_permission_label_projection" |
| 195 | android:description="@string/car_permission_desc_projection"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 196 | |
| 197 | <!-- Allows an application to get the status of other applications projecting to the vehicle display. |
| 198 | technologies status changes. |
| 199 | <p>Protection level: signature|privileged |
| 200 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 201 | <permission android:name="android.car.permission.ACCESS_CAR_PROJECTION_STATUS" |
| 202 | android:protectionLevel="signature|privileged" |
| 203 | android:label="@string/car_permission_label_access_projection_status" |
| 204 | android:description="@string/car_permission_desc_access_projection_status"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 205 | |
| 206 | <!-- Must be required by projection service to ensure only system can bind to it. |
| 207 | <p>Protection level: signature |
| 208 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 209 | <permission android:name="android.car.permission.BIND_PROJECTION_SERVICE" |
| 210 | android:protectionLevel="signature" |
| 211 | android:label="@string/car_permission_label_bind_projection_service" |
| 212 | android:description="@string/car_permission_desc_bind_projection_service"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 213 | |
| 214 | <!-- Allows an application to emulate the vehicle HAL for testing purposes. |
| 215 | <p>Protection level: signature|privileged |
| 216 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 217 | <permission android:name="android.car.permission.CAR_MOCK_VEHICLE_HAL" |
| 218 | android:protectionLevel="signature|privileged" |
| 219 | android:label="@string/car_permission_label_mock_vehicle_hal" |
| 220 | android:description="@string/car_permission_desc_mock_vehicle_hal"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 221 | |
| 222 | <!-- Allows an application to read the vehicle car basic information. For example, it allows |
| 223 | an application to read the vehicle Make, Model, Model Year, fuel capacity, fuel type, |
| 224 | EV battery capacity, EV connection type, fuel door location and driver seat location. |
| 225 | <p>Protection level: normal |
| 226 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 227 | <permission android:name="android.car.permission.CAR_INFO" |
| 228 | android:protectionLevel="normal" |
| 229 | android:label="@string/car_permission_label_car_info" |
| 230 | android:description="@string/car_permission_desc_car_info"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 231 | |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 232 | <!-- Allows an application to read information of car's vendor permission. |
| 233 | <p>Protection level: signature|privileged |
| 234 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 235 | <permission android:name="android.car.permission.READ_CAR_VENDOR_PERMISSION_INFO" |
| 236 | android:protectionLevel="signature|privileged" |
| 237 | android:label="@string/car_permission_label_vendor_permission_info" |
| 238 | android:description="@string/car_permission_desc_vendor_permission_info"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 239 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 240 | <!-- Allows an application to read the vehicle exterior environment information. For example, |
| 241 | it allows an application to read the vehicle exterior temperature and night mode status. |
| 242 | <p>Protection level: normal |
| 243 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 244 | <permission android:name="android.car.permission.CAR_EXTERIOR_ENVIRONMENT" |
| 245 | android:protectionLevel="normal" |
| 246 | android:label="@string/car_permission_label_car_exterior_environment" |
| 247 | android:description="@string/car_permission_desc_car_exterior_environment"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 248 | |
Kai Wang | bc5fbff | 2021-05-15 00:09:39 +0000 | [diff] [blame] | 249 | <!-- Allows an application to read and write car's epoch time. |
Kai | 093b006 | 2021-02-21 19:53:51 -0800 | [diff] [blame] | 250 | <p>Protection level: signature|privileged |
| 251 | --> |
Kai Wang | bc5fbff | 2021-05-15 00:09:39 +0000 | [diff] [blame] | 252 | <permission android:name="android.car.permission.CAR_EPOCH_TIME" |
Kai | 093b006 | 2021-02-21 19:53:51 -0800 | [diff] [blame] | 253 | android:protectionLevel="signature|privileged" |
Kai Wang | bc5fbff | 2021-05-15 00:09:39 +0000 | [diff] [blame] | 254 | android:label="@string/car_permission_label_car_epoch_time" |
| 255 | android:description="@string/car_permission_desc_car_epoch_time"/> |
Kai | 093b006 | 2021-02-21 19:53:51 -0800 | [diff] [blame] | 256 | |
| 257 | <!-- Allows an application to read and write car's storage encryption binding seed. |
| 258 | <p>Protection level: signature|privileged |
| 259 | --> |
| 260 | <permission android:name="android.car.permission.STORAGE_ENCRYPTION_BINDING_SEED" |
| 261 | android:protectionLevel="signature|privileged" |
| 262 | android:label="@string/car_permission_label_encryption_binding_seed" |
| 263 | android:description="@string/car_permission_desc_encryption_binding_seed"/> |
| 264 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 265 | <!-- Allows an application to read the vehicle exterior lights state. |
| 266 | <p>Protection level: signature|privileged |
| 267 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 268 | <permission android:name="android.car.permission.CAR_EXTERIOR_LIGHTS" |
| 269 | android:protectionLevel="signature|privileged" |
| 270 | android:label="@string/car_permission_label_car_exterior_lights" |
| 271 | android:description="@string/car_permission_desc_car_exterior_lights"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 272 | |
| 273 | <!-- Allows an application to control the vehicle exterior lights. |
| 274 | <p>Protection level: signature|privileged |
| 275 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 276 | <permission android:name="android.car.permission.CONTROL_CAR_EXTERIOR_LIGHTS" |
| 277 | android:protectionLevel="signature|privileged" |
| 278 | android:label="@string/car_permission_label_control_car_exterior_lights" |
| 279 | android:description="@string/car_permission_desc_control_car_exterior_lights"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 280 | |
| 281 | <!-- Allows an application to read the vehicle interior lights state. |
| 282 | <p>Protection level: signature|privileged |
| 283 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 284 | <permission android:name="android.car.permission.READ_CAR_INTERIOR_LIGHTS" |
| 285 | android:protectionLevel="signature|privileged" |
| 286 | android:label="@string/car_permission_label_car_interior_lights" |
| 287 | android:description="@string/car_permission_desc_car_interior_lights"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 288 | |
| 289 | <!-- Allows an application to control the vehicle interior lights state. |
| 290 | <p>Protection level: signature|privileged |
| 291 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 292 | <permission android:name="android.car.permission.CONTROL_CAR_INTERIOR_LIGHTS" |
| 293 | android:protectionLevel="signature|privileged" |
| 294 | android:label="@string/car_permission_label_control_car_interior_lights" |
| 295 | android:description="@string/car_permission_desc_control_car_interior_lights"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 296 | |
| 297 | <!-- Allows an application to control the vehicle power state. |
| 298 | <p>Protection level: signature|privileged |
| 299 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 300 | <permission android:name="android.car.permission.CAR_POWER" |
| 301 | android:protectionLevel="signature|privileged" |
| 302 | android:label="@string/car_permission_label_car_power" |
| 303 | android:description="@string/car_permission_desc_car_power"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 304 | |
| 305 | <!-- Allows an application to read the vehicle powertrain information. For example, it allows |
| 306 | an application to read the vehicle current gear, ignition state or parking break status. |
| 307 | <p>Protection level: normal |
| 308 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 309 | <permission android:name="android.car.permission.CAR_POWERTRAIN" |
| 310 | android:protectionLevel="normal" |
| 311 | android:label="@string/car_permission_label_car_powertrain" |
| 312 | android:description="@string/car_permission_desc_car_powertrain"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 313 | |
| 314 | <!-- Allows an application to access {@link android.car.navigation.CarNavigationStatusManager} |
| 315 | to report navigation data. This information may be displayed by the vehicle in the |
| 316 | instrument cluster, head-up display or other locations. |
| 317 | <p>Protection level: signature|privileged |
| 318 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 319 | <permission android:name="android.car.permission.CAR_NAVIGATION_MANAGER" |
| 320 | android:protectionLevel="signature|privileged" |
| 321 | android:label="@string/car_permission_car_navigation_manager" |
| 322 | android:description="@string/car_permission_desc_car_navigation_manager"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 323 | |
| 324 | <!-- Allows an application to read vehicle diagnostic information, including vendor-specific |
| 325 | information. |
| 326 | <p>Protection level: signature|privileged |
| 327 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 328 | <permission android:name="android.car.permission.CAR_DIAGNOSTICS" |
| 329 | android:protectionLevel="signature|privileged" |
| 330 | android:label="@string/car_permission_label_diag_read" |
| 331 | android:description="@string/car_permission_desc_diag_read"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 332 | |
| 333 | <!-- Allows an application to clear diagnostic information from the vehicle. |
| 334 | <p>Protection level: signature|privileged |
| 335 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 336 | <permission android:name="android.car.permission.CLEAR_CAR_DIAGNOSTICS" |
| 337 | android:protectionLevel="signature|privileged" |
| 338 | android:label="@string/car_permission_label_diag_clear" |
| 339 | android:description="@string/car_permission_desc_diag_clear"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 340 | |
| 341 | <!-- Must be required by VMS client service to ensure only system can bind to it. |
| 342 | <p>Protection level: signature |
| 343 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 344 | <permission android:name="android.car.permission.BIND_VMS_CLIENT" |
| 345 | android:protectionLevel="signature" |
| 346 | android:label="@string/car_permission_label_bind_vms_client" |
| 347 | android:description="@string/car_permission_desc_bind_vms_client"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 348 | |
| 349 | <!-- Allows an application to publich VMS messages. |
| 350 | <p>Protection level: signature|privileged |
| 351 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 352 | <permission android:name="android.car.permission.VMS_PUBLISHER" |
| 353 | android:protectionLevel="signature|privileged" |
| 354 | android:label="@string/car_permission_label_vms_publisher" |
| 355 | android:description="@string/car_permission_desc_vms_publisher"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 356 | |
| 357 | <!-- Allows an application to subscribe to VMS messages. |
| 358 | <p>Protection level: signature|privileged |
| 359 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 360 | <permission android:name="android.car.permission.VMS_SUBSCRIBER" |
| 361 | android:protectionLevel="signature|privileged" |
| 362 | android:label="@string/car_permission_label_vms_subscriber" |
| 363 | android:description="@string/car_permission_desc_vms_subscriber"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 364 | |
| 365 | <!-- Allows an application to read the vehicle driving state. |
| 366 | <p>Protection level: signature|privileged |
| 367 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 368 | <permission android:name="android.car.permission.CAR_DRIVING_STATE" |
| 369 | android:protectionLevel="signature|privileged" |
| 370 | android:label="@string/car_permission_label_driving_state" |
| 371 | android:description="@string/car_permission_desc_driving_state"/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 372 | |
Rui Qiu | f666820 | 2021-04-08 15:37:20 -0700 | [diff] [blame] | 373 | <!-- Allows an application to use car's telemetry service. |
| 374 | <p>Protection level: signature|privileged |
| 375 | --> |
| 376 | <permission android:name="android.car.permission.USE_CAR_TELEMETRY_SERVICE" |
| 377 | android:protectionLevel="signature|privileged" |
| 378 | android:label="@string/car_permission_label_use_telemetry_service" |
| 379 | android:description="@string/car_permission_desc_use_telemetry_service"/> |
| 380 | |
Changyeon Jo | b484886 | 2021-03-19 06:46:02 -0700 | [diff] [blame] | 381 | <!-- Allows an application to request to launch the EVS previewing activity. |
Changyeon Jo | 67c155d | 2021-01-05 10:28:14 -0800 | [diff] [blame] | 382 | <p>Protection level: signature|privileged |
| 383 | --> |
Changyeon Jo | b484886 | 2021-03-19 06:46:02 -0700 | [diff] [blame] | 384 | <permission android:name="android.car.permission.REQUEST_CAR_EVS_ACTIVITY" |
Changyeon Jo | 67c155d | 2021-01-05 10:28:14 -0800 | [diff] [blame] | 385 | android:protectionLevel="signature|privileged" |
Changyeon Jo | b484886 | 2021-03-19 06:46:02 -0700 | [diff] [blame] | 386 | android:label="@string/car_permission_label_request_evs_activity" |
| 387 | android:description="@string/car_permission_desc_request_evs_activity"/> |
Changyeon Jo | 67c155d | 2021-01-05 10:28:14 -0800 | [diff] [blame] | 388 | |
Changyeon Jo | b484886 | 2021-03-19 06:46:02 -0700 | [diff] [blame] | 389 | <!-- Allows an application to control the EVS previewing activity. |
| 390 | <p>Protection level: signature|privileged |
| 391 | --> |
| 392 | <permission android:name="android.car.permission.CONTROL_CAR_EVS_ACTIVITY" |
| 393 | android:protectionLevel="signature|privileged" |
| 394 | android:label="@string/car_permission_label_control_evs_activity" |
| 395 | android:description="@string/car_permission_desc_control_evs_activity"/> |
| 396 | |
| 397 | <!-- Allows an application to use EVS camera streams. |
| 398 | <p>Protection level: signature|privileged |
| 399 | --> |
| 400 | <permission android:name="android.car.permission.USE_CAR_EVS_CAMERA" |
| 401 | android:protectionLevel="signature|privileged" |
| 402 | android:label="@string/car_permission_label_use_evs_camera" |
| 403 | android:description="@string/car_permission_desc_use_evs_camera"/> |
| 404 | |
| 405 | <!-- Allows an application to monitor a current status of the EVS service. |
Changyeon Jo | 67c155d | 2021-01-05 10:28:14 -0800 | [diff] [blame] | 406 | <p>Protection level: signature|privileged |
| 407 | --> |
| 408 | <permission android:name="android.car.permission.MONITOR_CAR_EVS_STATUS" |
| 409 | android:protectionLevel="signature|privileged" |
| 410 | android:label="@string/car_permission_label_monitor_evs_status" |
| 411 | android:description="@string/car_permission_desc_monitor_evs_status"/> |
Keun-young Park | 4aeb4bf | 2015-12-08 18:31:33 -0800 | [diff] [blame] | 412 | <!-- may replace this with system permission if proper one is defined. --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 413 | <eat-comment/> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 414 | <!-- Allows an application to block other applications for driver distraction purposes. |
| 415 | Note: This permission may be replaced in future versions. |
| 416 | <p>Protection level: signature|privileged |
| 417 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 418 | <permission android:name="android.car.permission.CONTROL_APP_BLOCKING" |
| 419 | android:protectionLevel="signature|privileged" |
| 420 | android:label="@string/car_permission_label_control_app_blocking" |
| 421 | android:description="@string/car_permission_desc_control_app_blocking"/> |
Keun-young Park | 4aeb4bf | 2015-12-08 18:31:33 -0800 | [diff] [blame] | 422 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 423 | <!-- Allows an application to control the vehicle audio volume. |
| 424 | <p>Protection level: signature|privileged |
| 425 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 426 | <permission android:name="android.car.permission.CAR_CONTROL_AUDIO_VOLUME" |
| 427 | android:protectionLevel="signature|privileged" |
| 428 | android:label="@string/car_permission_label_audio_volume" |
| 429 | android:description="@string/car_permission_desc_audio_volume"/> |
Yao Chen | c4d442f | 2016-04-08 11:33:47 -0700 | [diff] [blame] | 430 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 431 | <!-- Allows an application to control the vehicle audio settings. |
| 432 | <p>Protection level: signature|privileged |
| 433 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 434 | <permission android:name="android.car.permission.CAR_CONTROL_AUDIO_SETTINGS" |
| 435 | android:protectionLevel="signature|privileged" |
| 436 | android:label="@string/car_permission_label_audio_settings" |
| 437 | android:description="@string/car_permission_desc_audio_settings"/> |
Keun-young Park | fe1a8f1 | 2017-01-17 20:06:34 -0800 | [diff] [blame] | 438 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 439 | <!-- Must be required by instrument cluster service to ensure only system can bind to it. |
| 440 | <p>Protection level: signature |
| 441 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 442 | <permission android:name="android.car.permission.RECEIVE_CAR_AUDIO_DUCKING_EVENTS" |
| 443 | android:protectionLevel="system|signature" |
| 444 | android:label="@string/car_permission_label_receive_ducking" |
| 445 | android:description="@string/car_permission_desc_receive_ducking"/> |
Justin Paupore | eade0f2 | 2019-03-13 19:03:13 -0700 | [diff] [blame] | 446 | |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 447 | <permission android:name="android.car.permission.BIND_INSTRUMENT_CLUSTER_RENDERER_SERVICE" |
| 448 | android:protectionLevel="signature" |
| 449 | android:label="@string/car_permission_label_bind_instrument_cluster_rendering" |
| 450 | android:description="@string/car_permission_desc_bind_instrument_cluster_rendering"/> |
Pavel Maltsev | 0477e29 | 2016-05-27 12:22:36 -0700 | [diff] [blame] | 451 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 452 | <!-- Allows an application to handle the vehicle input events. |
| 453 | <p>Protection level: signature |
| 454 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 455 | <permission android:name="android.car.permission.BIND_CAR_INPUT_SERVICE" |
| 456 | android:protectionLevel="signature" |
| 457 | android:label="@string/car_permission_label_bind_input_service" |
| 458 | android:description="@string/car_permission_desc_bind_input_service"/> |
Vitalii Tomkiv | 2bd0692 | 2016-07-26 11:07:48 -0700 | [diff] [blame] | 459 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 460 | <!-- Allows an application to declare activities to be displayed in the instrument cluster. |
| 461 | <p>Protection level: signature|privileged |
| 462 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 463 | <permission android:name="android.car.permission.CAR_DISPLAY_IN_CLUSTER" |
| 464 | android:protectionLevel="signature|privileged" |
| 465 | android:label="@string/car_permission_car_display_in_cluster" |
| 466 | android:description="@string/car_permission_desc_car_display_in_cluster"/> |
Pavel Maltsev | 905968c | 2017-07-16 19:48:57 -0700 | [diff] [blame] | 467 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 468 | <!-- Allows an application to lunch applications in the instrument cluster. |
| 469 | <p>Protection level: signature|privileged |
| 470 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 471 | <permission android:name="android.car.permission.CAR_INSTRUMENT_CLUSTER_CONTROL" |
| 472 | android:protectionLevel="signature|privileged" |
| 473 | android:label="@string/car_permission_car_cluster_control" |
| 474 | android:description="@string/car_permission_desc_car_cluster_control"/> |
Pavel Maltsev | 905968c | 2017-07-16 19:48:57 -0700 | [diff] [blame] | 475 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 476 | <!-- Allows an application to communicate with a device in AOAP mode. |
| 477 | <p>Protection level: signature|privileged |
| 478 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 479 | <permission android:name="android.car.permission.CAR_HANDLE_USB_AOAP_DEVICE" |
| 480 | android:protectionLevel="signature|privileged" |
| 481 | android:label="@string/car_permission_label_car_handle_usb_aoap_device" |
| 482 | android:description="@string/car_permission_desc_car_handle_usb_aoap_device"/> |
Pavel Maltsev | 6b49b9b | 2019-03-14 10:14:24 -0700 | [diff] [blame] | 483 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 484 | <!-- Allows an application to configure UX restrictions in the device. |
| 485 | <p>Protection level: signature|privileged |
| 486 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 487 | <permission android:name="android.car.permission.CAR_UX_RESTRICTIONS_CONFIGURATION" |
| 488 | android:protectionLevel="signature|privileged" |
| 489 | android:label="@string/car_permission_label_car_ux_restrictions_configuration" |
| 490 | android:description="@string/car_permission_desc_car_ux_restrictions_configuration"/> |
Yao, Yuxing | 0811d5a | 2018-11-29 16:18:53 -0800 | [diff] [blame] | 491 | |
Michael Keller | 3e0cfda | 2020-02-03 09:39:50 -0800 | [diff] [blame] | 492 | <!-- Allows an application to read state data from the 'Occupant Awareness System'. |
Michael Keller | c0f0bdb | 2019-12-11 14:58:19 -0800 | [diff] [blame] | 493 | <p>Protection level: signature|privileged |
| 494 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 495 | <permission android:name="android.car.permission.READ_CAR_OCCUPANT_AWARENESS_STATE" |
| 496 | android:protectionLevel="signature|privileged" |
| 497 | android:label="@string/car_permission_label_read_car_occupant_awareness_state" |
| 498 | android:description="@string/car_permission_desc_read_car_occupant_awareness_state"/> |
Michael Keller | c0f0bdb | 2019-12-11 14:58:19 -0800 | [diff] [blame] | 499 | |
kanant | 6db5294 | 2020-11-06 14:32:44 -0800 | [diff] [blame] | 500 | <!-- Allows an application to access private display id. |
| 501 | <p>Protection level: signature|privileged |
| 502 | --> |
| 503 | <permission android:name="android.car.permission.ACCESS_PRIVATE_DISPLAY_ID" |
| 504 | android:protectionLevel="signature|privileged" |
| 505 | android:label="@string/car_permission_label_access_private_display_id" |
| 506 | android:description="@string/car_permission_desc_access_private_display_id"/> |
| 507 | |
Michael Keller | 3e0cfda | 2020-02-03 09:39:50 -0800 | [diff] [blame] | 508 | <!-- Allows an application to control the detection graph for the 'Occupant Awareness System'. |
Michael Keller | c0f0bdb | 2019-12-11 14:58:19 -0800 | [diff] [blame] | 509 | <p>Protection level: signature|privileged |
| 510 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 511 | <permission android:name="android.car.permission.CONTROL_CAR_OCCUPANT_AWARENESS_SYSTEM" |
| 512 | android:protectionLevel="signature|privileged" |
| 513 | android:label="@string/car_permission_label_control_car_occupant_awareness_system" |
| 514 | android:description="@string/car_permission_desc_control_car_occupant_awareness_system"/> |
Michael Keller | c0f0bdb | 2019-12-11 14:58:19 -0800 | [diff] [blame] | 515 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 516 | <!-- Allows an application to monitor flash storage usage. |
| 517 | <p>Protection level: signature|privileged |
| 518 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 519 | <permission android:name="android.car.permission.STORAGE_MONITORING" |
| 520 | android:protectionLevel="signature|privileged" |
| 521 | android:label="@string/car_permission_label_storage_monitoring" |
| 522 | android:description="@string/car_permission_desc_storage_monitoring"/> |
Enrico Granata | 1172f88 | 2017-09-21 14:51:30 -0700 | [diff] [blame] | 523 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 524 | <!-- Allows an application to enroll trusted devices. |
| 525 | <p>Protection level: signature|privileged |
| 526 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 527 | <permission android:name="android.car.permission.CAR_ENROLL_TRUST" |
| 528 | android:protectionLevel="signature|privileged" |
| 529 | android:label="@string/car_permission_label_enroll_trust" |
| 530 | android:description="@string/car_permission_desc_enroll_trust"/> |
Ram Periathiruvadi | 97989be | 2019-03-28 18:20:05 -0700 | [diff] [blame] | 531 | |
Keun young Park | 82b39fe | 2019-10-17 09:21:02 -0700 | [diff] [blame] | 532 | <!-- Allows a test application to control car service's testing mode. |
| 533 | This is only for platform level testing. |
| 534 | <p>Protection level: signature|privileged |
| 535 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 536 | <permission android:name="android.car.permission.CAR_TEST_SERVICE" |
| 537 | android:protectionLevel="signature|privileged" |
| 538 | android:label="@string/car_permission_label_car_test_service" |
| 539 | android:description="@string/car_permission_desc_car_test_service"/> |
Keun young Park | 82b39fe | 2019-10-17 09:21:02 -0700 | [diff] [blame] | 540 | |
Keun young Park | 9a91efb | 2019-11-15 18:10:47 -0800 | [diff] [blame] | 541 | <!-- Allows system app to enable / disable / query features in the system. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 542 | <p>Protection level: signature|privileged |
Keun young Park | 9a91efb | 2019-11-15 18:10:47 -0800 | [diff] [blame] | 543 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 544 | <permission android:name="android.car.permission.CONTROL_CAR_FEATURES" |
| 545 | android:protectionLevel="signature|privileged" |
| 546 | android:label="@string/car_permission_label_control_car_features" |
| 547 | android:description="@string/car_permission_desc_control_car_features"/> |
Keun young Park | 9a91efb | 2019-11-15 18:10:47 -0800 | [diff] [blame] | 548 | |
Eric Jeong | 38ae821 | 2020-01-14 10:25:10 -0800 | [diff] [blame] | 549 | <!-- Allows an application to use car watchdog service. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 550 | <p>Protection level: signature|privileged |
Eric Jeong | 38ae821 | 2020-01-14 10:25:10 -0800 | [diff] [blame] | 551 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 552 | <permission android:name="android.car.permission.USE_CAR_WATCHDOG" |
| 553 | android:protectionLevel="signature|privileged" |
| 554 | android:label="@string/car_permission_label_use_car_watchdog" |
| 555 | android:description="@string/car_permission_desc_use_car_watchdog"/> |
Eric Jeong | 38ae821 | 2020-01-14 10:25:10 -0800 | [diff] [blame] | 556 | |
Lakshman Annadorai | d84a0e1 | 2021-01-14 14:35:05 -0800 | [diff] [blame] | 557 | <!-- Allows an application to control car watchdog service configurations. |
| 558 | <p>Protection level: signature|privileged |
| 559 | --> |
| 560 | <permission android:name="android.car.permission.CONTROL_CAR_WATCHDOG_CONFIG" |
| 561 | android:protectionLevel="signature|privileged" |
| 562 | android:label="@string/car_permission_label_control_car_watchdog_config" |
| 563 | android:description="@string/car_permission_desc_control_car_watchdog_config"/> |
| 564 | |
| 565 | <!-- Allows an application to collect car watchdog service metrics. |
| 566 | <p>Protection level: signature|privileged |
| 567 | --> |
| 568 | <permission android:name="android.car.permission.COLLECT_CAR_WATCHDOG_METRICS" |
| 569 | android:protectionLevel="signature|privileged" |
| 570 | android:label="@string/car_permission_label_collect_car_watchdog_metrics" |
| 571 | android:description="@string/car_permission_desc_collect_car_watchdog_metrics"/> |
| 572 | |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 573 | <!-- Allows an application to read vendor properties related with windows. |
| 574 | <p>Protection level: signature|privileged |
| 575 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 576 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_WINDOW" |
| 577 | android:protectionLevel="signature|privileged" |
| 578 | android:label="@string/car_permission_label_get_car_vendor_category_window" |
| 579 | android:description="@string/car_permission_desc_get_car_vendor_category_window"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 580 | |
| 581 | <!-- Allows an application to control vendor properties related with windows. |
| 582 | <p>Protection level: signature|privileged |
| 583 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 584 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_WINDOW" |
| 585 | android:protectionLevel="signature|privileged" |
| 586 | android:label="@string/car_permission_label_set_car_vendor_category_window" |
| 587 | android:description="@string/car_permission_desc_set_car_vendor_category_window"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 588 | |
| 589 | <!-- Allows an application to read vendor properties related with doors. |
| 590 | <p>Protection level: signature|privileged |
| 591 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 592 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_DOOR" |
| 593 | android:protectionLevel="signature|privileged" |
| 594 | android:label="@string/car_permission_label_get_car_vendor_category_door" |
| 595 | android:description="@string/car_permission_desc_get_car_vendor_category_door"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 596 | |
| 597 | <!-- Allows an application to control vendor properties related with doors. |
| 598 | <p>Protection level: signature|privileged |
| 599 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 600 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_DOOR" |
| 601 | android:protectionLevel="signature|privileged" |
| 602 | android:label="@string/car_permission_label_set_car_vendor_category_door" |
| 603 | android:description="@string/car_permission_desc_set_car_vendor_category_door"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 604 | |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 605 | <!-- Allows an application to read vendor properties related with seats. |
| 606 | <p>Protection level: signature|privileged |
| 607 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 608 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_SEAT" |
| 609 | android:protectionLevel="signature|privileged" |
| 610 | android:label="@string/car_permission_label_get_car_vendor_category_seat" |
| 611 | android:description="@string/car_permission_desc_get_car_vendor_category_seat"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 612 | |
| 613 | <!-- Allows an application to control vendor properties related with seats. |
| 614 | <p>Protection level: signature|privileged |
| 615 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 616 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_SEAT" |
| 617 | android:protectionLevel="signature|privileged" |
| 618 | android:label="@string/car_permission_label_set_car_vendor_category_seat" |
| 619 | android:description="@string/car_permission_desc_set_car_vendor_category_seat"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 620 | |
| 621 | <!-- Allows an application to read vendor properties related with mirrors. |
| 622 | <p>Protection level: signature|privileged |
| 623 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 624 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_MIRROR" |
| 625 | android:protectionLevel="signature|privileged" |
| 626 | android:label="@string/car_permission_label_get_car_vendor_category_mirror" |
| 627 | android:description="@string/car_permission_desc_get_car_vendor_category_mirror"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 628 | |
| 629 | <!-- Allows an application to control vendor properties related with mirrors. |
| 630 | <p>Protection level: signature|privileged |
| 631 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 632 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_MIRROR" |
| 633 | android:protectionLevel="signature|privileged" |
| 634 | android:label="@string/car_permission_label_set_car_vendor_category_mirror" |
| 635 | android:description="@string/car_permission_desc_set_car_vendor_category_mirror"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 636 | |
| 637 | <!-- Allows an application to read vendor properties related with car information. |
| 638 | <p>Protection level: signature|privileged |
| 639 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 640 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_INFO" |
| 641 | android:protectionLevel="signature|privileged" |
| 642 | android:label="@string/car_permission_label_get_car_vendor_category_info" |
| 643 | android:description="@string/car_permission_desc_get_car_vendor_category_info"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 644 | |
| 645 | <!-- Allows an application to control vendor properties related with car information. |
| 646 | <p>Protection level: signature|privileged |
| 647 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 648 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_INFO" |
| 649 | android:protectionLevel="signature|privileged" |
| 650 | android:label="@string/car_permission_label_set_car_vendor_category_info" |
| 651 | android:description="@string/car_permission_desc_set_car_vendor_category_info"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 652 | |
| 653 | <!-- Allows an application to read vendor properties related with engine. |
| 654 | <p>Protection level: signature|privileged |
| 655 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 656 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_ENGINE" |
| 657 | android:protectionLevel="signature|privileged" |
| 658 | android:label="@string/car_permission_label_get_car_vendor_category_engine" |
| 659 | android:description="@string/car_permission_desc_get_car_vendor_category_engine"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 660 | |
| 661 | <!-- Allows an application to control vendor properties related with engine. |
| 662 | <p>Protection level: signature|privileged |
| 663 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 664 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_ENGINE" |
| 665 | android:protectionLevel="signature|privileged" |
| 666 | android:label="@string/car_permission_label_set_car_vendor_category_engine" |
| 667 | android:description="@string/car_permission_desc_set_car_vendor_category_engine"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 668 | |
| 669 | <!-- Allows an application to read vendor properties related with HVAC. |
| 670 | <p>Protection level: signature|privileged |
| 671 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 672 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_HVAC" |
| 673 | android:protectionLevel="signature|privileged" |
| 674 | android:label="@string/car_permission_label_get_car_vendor_category_hvac" |
| 675 | android:description="@string/car_permission_desc_get_car_vendor_category_hvac"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 676 | |
| 677 | <!-- Allows an application to control vendor properties related with hvac. |
| 678 | <p>Protection level: signature|privileged |
| 679 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 680 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_HVAC" |
| 681 | android:protectionLevel="signature|privileged" |
| 682 | android:label="@string/car_permission_label_set_car_vendor_category_hvac" |
| 683 | android:description="@string/car_permission_desc_set_car_vendor_category_hvac"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 684 | |
| 685 | <!-- Allows an application to read vendor properties related with light. |
| 686 | <p>Protection level: signature|privileged |
| 687 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 688 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_LIGHT" |
| 689 | android:protectionLevel="signature|privileged" |
| 690 | android:label="@string/car_permission_label_get_car_vendor_category_light" |
| 691 | android:description="@string/car_permission_desc_get_car_vendor_category_light"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 692 | |
| 693 | <!-- Allows an application to control vendor properties related with light. |
| 694 | <p>Protection level: signature|privileged |
| 695 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 696 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_LIGHT" |
| 697 | android:protectionLevel="signature|privileged" |
| 698 | android:label="@string/car_permission_label_set_car_vendor_category_light" |
| 699 | android:description="@string/car_permission_desc_set_car_vendor_category_light"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 700 | |
| 701 | <!-- Allows an application to access vendor properties in category 1. |
| 702 | <p>Protection level: signature|privileged |
| 703 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 704 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_1" |
| 705 | android:protectionLevel="signature|privileged" |
| 706 | android:label="@string/car_permission_label_get_car_vendor_category_1" |
| 707 | android:description="@string/car_permission_desc_get_car_vendor_category_1"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 708 | |
| 709 | <!-- Allows an application to control vendor properties in category 1. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 710 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 711 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 712 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_1" |
| 713 | android:protectionLevel="signature|privileged" |
| 714 | android:label="@string/car_permission_label_set_car_vendor_category_1" |
| 715 | android:description="@string/car_permission_desc_set_car_vendor_category_1"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 716 | |
| 717 | <!-- Allows an application to access vendor properties in category 2. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 718 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 719 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 720 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_2" |
| 721 | android:protectionLevel="signature|privileged" |
| 722 | android:label="@string/car_permission_label_get_car_vendor_category_2" |
| 723 | android:description="@string/car_permission_desc_get_car_vendor_category_2"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 724 | |
| 725 | <!-- Allows an application to control vendor properties in category 2. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 726 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 727 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 728 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_2" |
| 729 | android:protectionLevel="signature|privileged" |
| 730 | android:label="@string/car_permission_label_set_car_vendor_category_2" |
| 731 | android:description="@string/car_permission_desc_set_car_vendor_category_2"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 732 | |
| 733 | <!-- Allows an application to access vendor properties in category 3. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 734 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 735 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 736 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_3" |
| 737 | android:protectionLevel="signature|privileged" |
| 738 | android:label="@string/car_permission_label_get_car_vendor_category_3" |
| 739 | android:description="@string/car_permission_desc_get_car_vendor_category_3"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 740 | |
| 741 | <!-- Allows an application to control vendor properties in category 3. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 742 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 743 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 744 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_3" |
| 745 | android:protectionLevel="signature|privileged" |
| 746 | android:label="@string/car_permission_label_set_car_vendor_category_3" |
| 747 | android:description="@string/car_permission_desc_set_car_vendor_category_3"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 748 | |
| 749 | <!-- Allows an application to access vendor properties in category 4. |
| 750 | <p>Protection level: signature|privileged |
| 751 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 752 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_4" |
| 753 | android:protectionLevel="signature|privileged" |
| 754 | android:label="@string/car_permission_label_get_car_vendor_category_4" |
| 755 | android:description="@string/car_permission_desc_get_car_vendor_category_4"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 756 | |
| 757 | <!-- Allows an application to control vendor properties in category 4. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 758 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 759 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 760 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_4" |
| 761 | android:protectionLevel="signature|privileged" |
| 762 | android:label="@string/car_permission_label_set_car_vendor_category_4" |
| 763 | android:description="@string/car_permission_desc_set_car_vendor_category_4"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 764 | |
| 765 | <!-- Allows an application to access vendor properties in category 5. |
| 766 | <p>Protection level: signature|privileged |
| 767 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 768 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_5" |
| 769 | android:protectionLevel="signature|privileged" |
| 770 | android:label="@string/car_permission_label_get_car_vendor_category_5" |
| 771 | android:description="@string/car_permission_desc_get_car_vendor_category_5"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 772 | |
| 773 | <!-- Allows an application to control vendor properties in category 5. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 774 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 775 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 776 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_5" |
| 777 | android:protectionLevel="signature|privileged" |
| 778 | android:label="@string/car_permission_label_set_car_vendor_category_5" |
| 779 | android:description="@string/car_permission_desc_set_car_vendor_category_5"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 780 | |
| 781 | <!-- Allows an application to access vendor properties in category 6. |
| 782 | <p>Protection level: signature|privileged |
| 783 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 784 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_6" |
| 785 | android:protectionLevel="signature|privileged" |
| 786 | android:label="@string/car_permission_label_get_car_vendor_category_6" |
| 787 | android:description="@string/car_permission_desc_get_car_vendor_category_6"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 788 | |
| 789 | <!-- Allows an application to control vendor properties in category 6. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 790 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 791 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 792 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_6" |
| 793 | android:protectionLevel="signature|privileged" |
| 794 | android:label="@string/car_permission_label_set_car_vendor_category_6" |
| 795 | android:description="@string/car_permission_desc_set_car_vendor_category_6"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 796 | |
| 797 | <!-- Allows an application to access vendor properties in category 7. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 798 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 799 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 800 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_7" |
| 801 | android:protectionLevel="signature|privileged" |
| 802 | android:label="@string/car_permission_label_get_car_vendor_category_7" |
| 803 | android:description="@string/car_permission_desc_get_car_vendor_category_7"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 804 | |
| 805 | <!-- Allows an application to control vendor properties in category 7. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 806 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 807 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 808 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_7" |
| 809 | android:protectionLevel="signature|privileged" |
| 810 | android:label="@string/car_permission_label_set_car_vendor_category_7" |
| 811 | android:description="@string/car_permission_desc_set_car_vendor_category_7"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 812 | |
| 813 | <!-- Allows an application to access vendor properties in category 8. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 814 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 815 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 816 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_8" |
| 817 | android:protectionLevel="signature|privileged" |
| 818 | android:label="@string/car_permission_label_get_car_vendor_category_8" |
| 819 | android:description="@string/car_permission_desc_get_car_vendor_category_8"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 820 | |
| 821 | <!-- Allows an application to control vendor properties in category 8. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 822 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 823 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 824 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_8" |
| 825 | android:protectionLevel="signature|privileged" |
| 826 | android:label="@string/car_permission_label_set_car_vendor_category_8" |
| 827 | android:description="@string/car_permission_desc_set_car_vendor_category_8"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 828 | |
| 829 | <!-- Allows an application to access vendor properties in category 9. |
| 830 | <p>Protection level: signature|privileged |
| 831 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 832 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_9" |
| 833 | android:protectionLevel="signature|privileged" |
| 834 | android:label="@string/car_permission_label_get_car_vendor_category_9" |
| 835 | android:description="@string/car_permission_desc_get_car_vendor_category_9"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 836 | |
| 837 | <!-- Allows an application to control vendor properties in category 9. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 838 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 839 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 840 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_9" |
| 841 | android:protectionLevel="signature|privileged" |
| 842 | android:label="@string/car_permission_label_set_car_vendor_category_9" |
| 843 | android:description="@string/car_permission_desc_set_car_vendor_category_9"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 844 | |
| 845 | <!-- Allows an application to access vendor properties in category 10. |
| 846 | <p>Protection level: signature|privileged |
| 847 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 848 | <permission android:name="android.car.permission.GET_CAR_VENDOR_CATEGORY_10" |
| 849 | android:protectionLevel="signature|privileged" |
| 850 | android:label="@string/car_permission_label_get_car_vendor_category_10" |
| 851 | android:description="@string/car_permission_desc_get_car_vendor_category_10"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 852 | |
| 853 | <!-- Allows an application to control vendor properties in category 10. |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 854 | <p>Protection level: signature|privileged |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 855 | --> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 856 | <permission android:name="android.car.permission.SET_CAR_VENDOR_CATEGORY_10" |
| 857 | android:protectionLevel="signature|privileged" |
| 858 | android:label="@string/car_permission_label_set_car_vendor_category_10" |
| 859 | android:description="@string/car_permission_desc_set_car_vendor_category_10"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 860 | |
kanant | 31039c3 | 2020-10-15 10:37:02 -0700 | [diff] [blame] | 861 | <!-- Allows an application to receive Car input events. |
Antonio Kantek | 22f97e3 | 2021-05-07 09:13:05 -0700 | [diff] [blame] | 862 | <p>Protection level: signature|privileged |
kanant | 31039c3 | 2020-10-15 10:37:02 -0700 | [diff] [blame] | 863 | --> |
| 864 | <permission android:name="android.car.permission.CAR_MONITOR_INPUT" |
Antonio Kantek | 22f97e3 | 2021-05-07 09:13:05 -0700 | [diff] [blame] | 865 | android:protectionLevel="signature|privileged" |
kanant | 31039c3 | 2020-10-15 10:37:02 -0700 | [diff] [blame] | 866 | android:label="@string/car_permission_label_monitor_input" |
| 867 | android:description="@string/car_permission_desc_monitor_input"/> |
Kai | 92f030d | 2019-10-24 13:07:48 -0700 | [diff] [blame] | 868 | |
Eric Jeong | b700381 | 2020-12-08 11:37:55 -0800 | [diff] [blame] | 869 | <!-- Allows an application to get the current power policy or to be notified of power policy |
| 870 | change. |
| 871 | <p>Protection level: normal |
| 872 | --> |
| 873 | <permission android:name="android.car.permission.READ_CAR_POWER_POLICY" |
| 874 | android:protectionLevel="normal" |
| 875 | android:label="@string/car_permission_label_read_car_power_policy" |
| 876 | android:description="@string/car_permission_desc_read_car_power_policy"/> |
| 877 | |
| 878 | <!-- Allows an application to apply a new power policy. |
| 879 | <p>Protection level: signature|privileged |
| 880 | --> |
| 881 | <permission android:name="android.car.permission.CONTROL_CAR_POWER_POLICY" |
| 882 | android:protectionLevel="signature|privileged" |
| 883 | android:label="@string/car_permission_label_control_car_power_policy" |
| 884 | android:description="@string/car_permission_desc_control_car_power_policy"/> |
| 885 | |
Roberto Perez | 841057b | 2020-12-09 19:19:55 +0000 | [diff] [blame] | 886 | <!-- Allows an application to render template-based UI metadata on behalf of another |
| 887 | application. |
| 888 | <p>Protection level: signature|privileged |
| 889 | --> |
| 890 | <permission android:name="android.car.permission.TEMPLATE_RENDERER" |
| 891 | android:protectionLevel="signature|privileged" |
| 892 | android:label="@string/car_permission_label_template_renderer" |
| 893 | android:description="@string/car_permission_desc_template_renderer"/> |
| 894 | |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 895 | <uses-permission android:name="android.permission.CALL_PHONE"/> |
| 896 | <uses-permission android:name="android.permission.DEVICE_POWER"/> |
| 897 | <uses-permission android:name="android.permission.GRANT_RUNTIME_PERMISSIONS"/> |
| 898 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/> |
| 899 | <uses-permission android:name="android.permission.MANAGE_ACTIVITY_STACKS"/> |
| 900 | <uses-permission android:name="android.permission.MODIFY_AUDIO_ROUTING"/> |
| 901 | <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE"/> |
| 902 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE"/> |
| 903 | <uses-permission android:name="android.permission.READ_CALL_LOG"/> |
| 904 | <uses-permission android:name="android.permission.READ_PHONE_STATE"/> |
| 905 | <uses-permission android:name="android.permission.REAL_GET_TASKS"/> |
| 906 | <uses-permission android:name="android.permission.REBOOT"/> |
| 907 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> |
| 908 | <uses-permission android:name="android.permission.REMOVE_TASKS"/> |
| 909 | <uses-permission android:name="android.permission.WRITE_SETTINGS"/> |
| 910 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/> |
| 911 | <uses-permission android:name="android.permission.BLUETOOTH"/> |
Jeff Sharkey | 464d382 | 2021-03-24 22:56:26 -0600 | [diff] [blame] | 912 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/> |
Jeff Sharkey | 2418e36 | 2021-04-01 13:44:46 -0600 | [diff] [blame] | 913 | <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE"/> |
Jeff Sharkey | 464d382 | 2021-03-24 22:56:26 -0600 | [diff] [blame] | 914 | <uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/> |
| 915 | <uses-permission android:name="android.permission.BLUETOOTH_SCAN"/> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 916 | <uses-permission android:name="android.permission.MANAGE_APP_OPS_MODES"/> |
| 917 | <uses-permission android:name="android.permission.MANAGE_USERS"/> |
| 918 | <uses-permission android:name="android.permission.LOCATION_HARDWARE"/> |
| 919 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> |
| 920 | <uses-permission android:name="android.permission.PROVIDE_TRUST_AGENT"/> |
| 921 | <uses-permission android:name="android.permission.READ_LOGS"/> |
Felipe Leme | 7250906 | 2020-11-13 11:55:11 -0800 | [diff] [blame] | 922 | <!-- Used by NotificationHelper to change the notifications app name --> |
| 923 | <uses-permission android:name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/> |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 924 | |
Colin Cross | 4543e61 | 2018-06-14 15:57:30 -0700 | [diff] [blame] | 925 | <application android:label="@string/app_title" |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 926 | android:directBootAware="true" |
| 927 | android:allowBackup="false" |
| 928 | android:persistent="true"> |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 929 | |
Gregory Clark | d813606 | 2017-12-11 14:27:53 -0800 | [diff] [blame] | 930 | <service android:name=".CarService" |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 931 | android:singleUser="true" |
| 932 | android:exported="true"> |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 933 | <intent-filter> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 934 | <action android:name="android.car.ICar"/> |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 935 | </intent-filter> |
| 936 | </service> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 937 | <service android:name=".PerUserCarService" |
Max Dashouk | 2c013db | 2021-06-30 17:43:54 +0000 | [diff] [blame] | 938 | android:exported="false"/> |
Gaurav Bhola | afd79ef | 2021-06-16 13:22:03 +0000 | [diff] [blame] | 939 | <service |
| 940 | android:name="com.android.car.pm.CarSafetyAccessibilityService" |
| 941 | android:singleUser="true" |
| 942 | android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE" |
| 943 | android:exported="false"> |
| 944 | <intent-filter> |
| 945 | <action android:name="android.accessibilityservice.AccessibilityService" /> |
| 946 | </intent-filter> |
| 947 | <meta-data |
| 948 | android:name="android.accessibilityservice" |
| 949 | android:resource="@xml/car_safety_accessibility_service_config" /> |
| 950 | </service> |
Ram Periathiruvadi | de0ca08 | 2019-03-20 11:16:44 -0700 | [diff] [blame] | 951 | |
Keun-young Park | 4727da3 | 2016-05-31 10:00:51 -0700 | [diff] [blame] | 952 | <activity android:name="com.android.car.pm.ActivityBlockingActivity" |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 953 | android:documentLaunchMode="always" |
| 954 | android:excludeFromRecents="true" |
| 955 | android:exported="false" |
| 956 | android:theme="@android:style/Theme.Translucent.NoTitleBar"> |
Keun-young Park | 4727da3 | 2016-05-31 10:00:51 -0700 | [diff] [blame] | 957 | <intent-filter> |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 958 | <action android:name="android.intent.action.MAIN"/> |
Keun-young Park | 4727da3 | 2016-05-31 10:00:51 -0700 | [diff] [blame] | 959 | </intent-filter> |
| 960 | </activity> |
Mayank Garg | fc24d57 | 2020-02-14 11:32:34 -0800 | [diff] [blame] | 961 | <activity android:name="com.android.car.am.ContinuousBlankActivity" |
Ashwini Oruganti | 4d49813 | 2020-03-24 12:33:29 -0700 | [diff] [blame] | 962 | android:excludeFromRecents="true" |
| 963 | android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
| 964 | android:exported="false" |
| 965 | android:launchMode="singleTask"> |
Mayank Garg | fc24d57 | 2020-02-14 11:32:34 -0800 | [diff] [blame] | 966 | </activity> |
Yan Zhu | fb764ac | 2021-02-19 22:20:52 -0800 | [diff] [blame] | 967 | <activity android:name="com.android.car.admin.FactoryResetActivity" |
Felipe Leme | 7250906 | 2020-11-13 11:55:11 -0800 | [diff] [blame] | 968 | android:excludeFromRecents="true" |
| 969 | android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
| 970 | android:exported="false" |
| 971 | android:launchMode="singleTask"> |
| 972 | </activity> |
Felipe Leme | 8725a2f | 2020-12-09 16:04:51 -0800 | [diff] [blame] | 973 | <activity android:name="com.android.car.admin.NewUserDisclaimerActivity" |
| 974 | android:excludeFromRecents="true" |
| 975 | android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
| 976 | android:exported="false" |
| 977 | android:launchMode="singleTask"> |
| 978 | </activity> |
Mayank Garg | 2e224aa | 2021-05-17 12:41:29 -0700 | [diff] [blame] | 979 | <activity android:name=".DistractionOptimizedActivityForTesting"> |
| 980 | <meta-data android:name="distractionOptimized" android:value="true"/> |
| 981 | </activity> |
| 982 | <activity android:name=".NonDistractionOptimizedActivityForTesting"> |
| 983 | <meta-data android:name="distractionOptimized" android:value="false"/> |
| 984 | </activity> |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 985 | </application> |
| 986 | </manifest> |