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" |
| 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"> |
| 22 | |
| 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. --> |
| 26 | <permission-group |
Kai | 4959eee | 2018-04-24 00:34:02 -0700 | [diff] [blame] | 27 | android:name="android.car.permission-group.CAR_MONITORING" |
Brad Stenning | ee3d075 | 2018-12-12 18:05:54 -0800 | [diff] [blame] | 28 | android:icon="@drawable/perm_group_car" |
Kai | 4959eee | 2018-04-24 00:34:02 -0700 | [diff] [blame] | 29 | android:description="@string/car_permission_desc" |
| 30 | android:label="@string/car_permission_label" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 31 | |
| 32 | <!-- Allows an application to read the vehicle energy information. |
| 33 | <p>Protection level: dangerous |
| 34 | --> |
Steve Paik | 875616c | 2016-02-05 10:55:59 -0800 | [diff] [blame] | 35 | <permission |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 36 | android:name="android.car.permission.CAR_ENERGY" |
Kai | 4959eee | 2018-04-24 00:34:02 -0700 | [diff] [blame] | 37 | android:permissionGroup="android.car.permission-group.CAR_MONITORING" |
keunyoung | cc449f7 | 2015-08-12 10:46:27 -0700 | [diff] [blame] | 38 | android:protectionLevel="dangerous" |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 39 | android:label="@string/car_permission_label_energy" |
| 40 | android:description="@string/car_permission_desc_energy" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 41 | |
Kai | 8e3dad5 | 2019-07-25 14:14:07 -0700 | [diff] [blame] | 42 | <!-- Allows an application to adjust the vehicle's range remaining information. |
| 43 | <p>Protection level: signature|privileged |
| 44 | --> |
| 45 | <permission |
| 46 | android:name="android.car.permission.ADJUST_RANGE_REMAINING" |
| 47 | android:protectionLevel="signature|privileged" |
| 48 | android:label="@string/car_permission_label_adjust_range_remaining" |
| 49 | android:description="@string/car_permission_desc_adjust_range_remaining" /> |
| 50 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 51 | <!-- Allows an application to read the VIN information. |
| 52 | <p>Protection level: signature|privileged |
| 53 | --> |
keunyoung | cc449f7 | 2015-08-12 10:46:27 -0700 | [diff] [blame] | 54 | <permission |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 55 | android:name="android.car.permission.CAR_IDENTIFICATION" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 56 | android:protectionLevel="signature|privileged" |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 57 | android:label="@string/car_permission_label_car_identification" |
| 58 | android:description="@string/car_permission_desc_car_identification" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 59 | |
| 60 | <!-- Allows an application to control the vehicle HVAC. |
| 61 | <p>Protection level: signature|privileged |
| 62 | --> |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 63 | <permission |
| 64 | android:name="android.car.permission.CONTROL_CAR_CLIMATE" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 65 | android:protectionLevel="signature|privileged" |
Steve Paik | 6648198 | 2015-10-27 15:22:38 -0700 | [diff] [blame] | 66 | android:label="@string/car_permission_label_hvac" |
| 67 | android:description="@string/car_permission_desc_hvac" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 68 | |
| 69 | <!-- Allows an application to control the vehicle doors. |
| 70 | <p>Protection level: signature|privileged |
| 71 | --> |
Steve Paik | 6648198 | 2015-10-27 15:22:38 -0700 | [diff] [blame] | 72 | <permission |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 73 | android:name="android.car.permission.CONTROL_CAR_DOORS" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 74 | android:protectionLevel="signature|privileged" |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 75 | android:label="@string/car_permission_label_control_car_doors" |
| 76 | android:description="@string/car_permission_desc_control_car_doors" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 77 | |
| 78 | <!-- Allows an application to control the vehicle windows. |
| 79 | <p>Protection level: signature|privileged |
| 80 | --> |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 81 | <permission |
| 82 | android:name="android.car.permission.CONTROL_CAR_WINDOWS" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 83 | android:protectionLevel="signature|privileged" |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 84 | android:label="@string/car_permission_label_control_car_windows" |
| 85 | android:description="@string/car_permission_desc_control_car_windows" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 86 | |
| 87 | <!-- Allows an application to control the vehicle mirrors. |
| 88 | <p>Protection level: signature|privileged |
| 89 | --> |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 90 | <permission |
| 91 | android:name="android.car.permission.CONTROL_CAR_MIRRORS" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 92 | android:protectionLevel="signature|privileged" |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 93 | android:label="@string/car_permission_label_control_car_mirrors" |
| 94 | android:description="@string/car_permission_desc_control_car_mirrors" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 95 | |
| 96 | <!-- Allows an application to control the vehicle seats. |
| 97 | <p>Protection level: signature|privileged |
| 98 | --> |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 99 | <permission |
| 100 | android:name="android.car.permission.CONTROL_CAR_SEATS" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 101 | android:protectionLevel="signature|privileged" |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 102 | android:label="@string/car_permission_label_control_car_seats" |
| 103 | android:description="@string/car_permission_desc_control_car_seats" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 104 | |
| 105 | <!-- Allows an application to read the vehicle mileage information. |
| 106 | <p>Protection level: signature|privileged |
| 107 | --> |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 108 | <permission |
Keun-young Park | e54ac27 | 2016-02-16 19:02:18 -0800 | [diff] [blame] | 109 | android:name="android.car.permission.CAR_MILEAGE" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 110 | android:protectionLevel="signature|privileged" |
keunyoung | cc449f7 | 2015-08-12 10:46:27 -0700 | [diff] [blame] | 111 | android:label="@string/car_permission_label_mileage" |
| 112 | android:description="@string/car_permission_desc_mileage" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 113 | |
| 114 | <!-- Allows an application to read the vehicle tire pressure information. |
| 115 | <p>Protection level: signature|privileged |
| 116 | --> |
keunyoung | cc449f7 | 2015-08-12 10:46:27 -0700 | [diff] [blame] | 117 | <permission |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 118 | android:name="android.car.permission.CAR_TIRES" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 119 | android:protectionLevel="signature|privileged" |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 120 | android:label="@string/car_permission_label_car_tires" |
| 121 | android:description="@string/car_permission_desc_car_tires" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 122 | |
| 123 | <!-- Allows an application to read the vehicle steering angle information. |
| 124 | <p>Protection level: signature|privileged |
| 125 | --> |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 126 | <permission |
Kai | 6ee9ca2 | 2019-01-08 12:06:36 -0800 | [diff] [blame] | 127 | android:name="android.car.permission.READ_CAR_STEERING" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 128 | android:protectionLevel="signature|privileged" |
Kai | 6ee9ca2 | 2019-01-08 12:06:36 -0800 | [diff] [blame] | 129 | android:label="@string/car_permission_label_car_steering" |
| 130 | android:description="@string/car_permission_desc_car_steering" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 131 | |
| 132 | <!-- Allows an application to read the display units for distance, fuel, tire pressure, |
| 133 | EV battery and fuel consumption. |
| 134 | <p>Protection level: normal |
| 135 | --> |
Kai | 6ee9ca2 | 2019-01-08 12:06:36 -0800 | [diff] [blame] | 136 | <permission |
| 137 | android:name="android.car.permission.READ_CAR_DISPLAY_UNITS" |
| 138 | android:protectionLevel="normal" |
| 139 | android:label="@string/car_permission_label_read_car_display_units" |
| 140 | android:description="@string/car_permission_desc_read_car_display_units" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 141 | |
| 142 | <!-- Allows an application to control the display units for distance, fuel, tire pressure, |
| 143 | EV battery and fuel consumption. |
| 144 | <p>Protection level: normal |
| 145 | --> |
Kai | 6ee9ca2 | 2019-01-08 12:06:36 -0800 | [diff] [blame] | 146 | <permission |
| 147 | android:name="android.car.permission.CONTROL_CAR_DISPLAY_UNITS" |
| 148 | android:protectionLevel="normal" |
| 149 | android:label="@string/car_permission_label_control_car_display_units" |
| 150 | android:description="@string/car_permission_desc_control_car_display_units" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 151 | |
| 152 | <!-- Allows an application to read the vehicle speed. |
| 153 | <p>Protection level: dangerous |
| 154 | --> |
Kai | 6ee9ca2 | 2019-01-08 12:06:36 -0800 | [diff] [blame] | 155 | <permission |
Keun-young Park | e54ac27 | 2016-02-16 19:02:18 -0800 | [diff] [blame] | 156 | android:name="android.car.permission.CAR_SPEED" |
keunyoung | cc449f7 | 2015-08-12 10:46:27 -0700 | [diff] [blame] | 157 | android:permissionGroup="android.permission-group.LOCATION" |
| 158 | android:protectionLevel="dangerous" |
| 159 | android:label="@string/car_permission_label_speed" |
| 160 | android:description="@string/car_permission_desc_speed" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 161 | |
| 162 | <!-- Allows an application to read the vehicle fuel and charge port status. |
| 163 | <p>Protection level: normal |
| 164 | --> |
keunyoung | cc449f7 | 2015-08-12 10:46:27 -0700 | [diff] [blame] | 165 | <permission |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 166 | android:name="android.car.permission.CAR_ENERGY_PORTS" |
| 167 | android:protectionLevel="normal" |
| 168 | android:label="@string/car_permission_label_car_energy_ports" |
| 169 | android:description="@string/car_permission_desc_car_energy_ports" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 170 | |
| 171 | <!-- Allows an application to read the vehicle engine information. For example, it allows an |
| 172 | application to read the engine oil level, oil temperature, coolant temperature and RPM. |
| 173 | <p>Protection level: signature|privileged |
| 174 | --> |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 175 | <permission |
Kai | 25c0b85 | 2018-03-01 11:52:31 -0800 | [diff] [blame] | 176 | android:name="android.car.permission.CAR_ENGINE_DETAILED" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 177 | android:protectionLevel="signature|privileged" |
Kai | 25c0b85 | 2018-03-01 11:52:31 -0800 | [diff] [blame] | 178 | android:label="@string/car_permission_label_car_engine_detailed" |
| 179 | android:description="@string/car_permission_desc_car_engine_detailed" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 180 | |
| 181 | <!-- Allows an application to read the vehicle dynamic state information. For example, it |
| 182 | allows an application to read the ABS and traction control status. |
| 183 | <p>Protection level: signature|privileged |
| 184 | --> |
Kai | 25c0b85 | 2018-03-01 11:52:31 -0800 | [diff] [blame] | 185 | <permission |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 186 | android:name="android.car.permission.CAR_DYNAMICS_STATE" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 187 | android:protectionLevel="signature|privileged" |
Steve Paik | 289ab99 | 2017-07-11 22:40:57 -0700 | [diff] [blame] | 188 | android:label="@string/car_permission_label_vehicle_dynamics_state" |
| 189 | android:description="@string/car_permission_desc_vehicle_dynamics_state" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 190 | |
| 191 | <!-- Allows an application to access the vehicle vendor channel to exchange vendor-specific information. |
| 192 | <p>Protection level: signature|privileged |
| 193 | --> |
Steve Paik | 289ab99 | 2017-07-11 22:40:57 -0700 | [diff] [blame] | 194 | <permission |
Keun-young Park | e54ac27 | 2016-02-16 19:02:18 -0800 | [diff] [blame] | 195 | android:name="android.car.permission.CAR_VENDOR_EXTENSION" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 196 | android:protectionLevel="signature|privileged" |
keunyoung | cc449f7 | 2015-08-12 10:46:27 -0700 | [diff] [blame] | 197 | android:label="@string/car_permission_label_vendor_extension" |
| 198 | android:description="@string/car_permission_desc_vendor_extension" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 199 | |
| 200 | <!-- Allows an application to project an interface from a phone to the vehicle display. |
| 201 | <p>Protection level: signature|privileged |
| 202 | --> |
Sanket Agarwal | 3cf096a | 2015-10-13 14:46:31 -0700 | [diff] [blame] | 203 | <permission |
Vitalii Tomkiv | 6e5ee61 | 2016-03-09 14:57:32 -0800 | [diff] [blame] | 204 | android:name="android.car.permission.CAR_PROJECTION" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 205 | android:protectionLevel="signature|privileged" |
Vitalii Tomkiv | 6e5ee61 | 2016-03-09 14:57:32 -0800 | [diff] [blame] | 206 | android:label="@string/car_permission_label_projection" |
| 207 | android:description="@string/car_permission_desc_projection" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 208 | |
| 209 | <!-- Allows an application to get the status of other applications projecting to the vehicle display. |
| 210 | technologies status changes. |
| 211 | <p>Protection level: signature|privileged |
| 212 | --> |
keunyoung | 1ab8e18 | 2015-09-24 09:25:22 -0700 | [diff] [blame] | 213 | <permission |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 214 | android:name="android.car.permission.ACCESS_CAR_PROJECTION_STATUS" |
| 215 | android:protectionLevel="signature|privileged" |
| 216 | android:label="@string/car_permission_label_access_projection_status" |
| 217 | android:description="@string/car_permission_desc_access_projection_status" /> |
| 218 | |
| 219 | <!-- Must be required by projection service to ensure only system can bind to it. |
| 220 | <p>Protection level: signature |
| 221 | --> |
Pavel Maltsev | 116055f | 2019-03-14 14:03:15 -0700 | [diff] [blame] | 222 | <permission |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 223 | android:name="android.car.permission.BIND_PROJECTION_SERVICE" |
| 224 | android:protectionLevel="signature" |
| 225 | android:label="@string/car_permission_label_bind_projection_service" |
| 226 | android:description="@string/car_permission_desc_bind_projection_service" /> |
| 227 | |
| 228 | <!-- Allows an application to emulate the vehicle HAL for testing purposes. |
| 229 | <p>Protection level: signature|privileged |
| 230 | --> |
Pavel Maltsev | 116055f | 2019-03-14 14:03:15 -0700 | [diff] [blame] | 231 | <permission |
Keun-young Park | e54ac27 | 2016-02-16 19:02:18 -0800 | [diff] [blame] | 232 | android:name="android.car.permission.CAR_MOCK_VEHICLE_HAL" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 233 | android:protectionLevel="signature|privileged" |
keunyoung | 1ab8e18 | 2015-09-24 09:25:22 -0700 | [diff] [blame] | 234 | android:label="@string/car_permission_label_mock_vehicle_hal" |
| 235 | android:description="@string/car_permission_desc_mock_vehicle_hal" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 236 | |
| 237 | <!-- Allows an application to read the vehicle car basic information. For example, it allows |
| 238 | an application to read the vehicle Make, Model, Model Year, fuel capacity, fuel type, |
| 239 | EV battery capacity, EV connection type, fuel door location and driver seat location. |
| 240 | <p>Protection level: normal |
| 241 | --> |
Pavel Maltsev | ce4ffd9 | 2016-03-09 10:56:23 -0800 | [diff] [blame] | 242 | <permission |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 243 | android:name="android.car.permission.CAR_INFO" |
| 244 | android:protectionLevel="normal" |
| 245 | android:label="@string/car_permission_label_car_info" |
| 246 | android:description="@string/car_permission_desc_car_info" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 247 | |
| 248 | <!-- Allows an application to read the vehicle exterior environment information. For example, |
| 249 | it allows an application to read the vehicle exterior temperature and night mode status. |
| 250 | <p>Protection level: normal |
| 251 | --> |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 252 | <permission |
Kai | 4959eee | 2018-04-24 00:34:02 -0700 | [diff] [blame] | 253 | android:name="android.car.permission.CAR_EXTERIOR_ENVIRONMENT" |
| 254 | android:protectionLevel="normal" |
| 255 | android:label="@string/car_permission_label_car_exterior_environment" |
| 256 | android:description="@string/car_permission_desc_car_exterior_environment" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 257 | |
| 258 | <!-- Allows an application to read the vehicle exterior lights state. |
| 259 | <p>Protection level: signature|privileged |
| 260 | --> |
Kai | 4959eee | 2018-04-24 00:34:02 -0700 | [diff] [blame] | 261 | <permission |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 262 | android:name="android.car.permission.CAR_EXTERIOR_LIGHTS" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 263 | android:protectionLevel="signature|privileged" |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 264 | android:label="@string/car_permission_label_car_exterior_lights" |
| 265 | android:description="@string/car_permission_desc_car_exterior_lights" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 266 | |
| 267 | <!-- Allows an application to control the vehicle exterior lights. |
| 268 | <p>Protection level: signature|privileged |
| 269 | --> |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 270 | <permission |
| 271 | android:name="android.car.permission.CONTROL_CAR_EXTERIOR_LIGHTS" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 272 | android:protectionLevel="signature|privileged" |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 273 | android:label="@string/car_permission_label_control_car_exterior_lights" |
| 274 | android:description="@string/car_permission_desc_control_car_exterior_lights" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 275 | |
| 276 | <!-- Allows an application to read the vehicle interior lights state. |
| 277 | <p>Protection level: signature|privileged |
| 278 | --> |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 279 | <permission |
Kai | 6ee9ca2 | 2019-01-08 12:06:36 -0800 | [diff] [blame] | 280 | android:name="android.car.permission.READ_CAR_INTERIOR_LIGHTS" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 281 | android:protectionLevel="signature|privileged" |
Kai | 6ee9ca2 | 2019-01-08 12:06:36 -0800 | [diff] [blame] | 282 | android:label="@string/car_permission_label_car_interior_lights" |
| 283 | android:description="@string/car_permission_desc_car_interior_lights" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 284 | |
| 285 | <!-- Allows an application to control the vehicle interior lights state. |
| 286 | <p>Protection level: signature|privileged |
| 287 | --> |
Kai | 6ee9ca2 | 2019-01-08 12:06:36 -0800 | [diff] [blame] | 288 | <permission |
| 289 | android:name="android.car.permission.CONTROL_CAR_INTERIOR_LIGHTS" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 290 | android:protectionLevel="signature|privileged" |
Kai | 6ee9ca2 | 2019-01-08 12:06:36 -0800 | [diff] [blame] | 291 | android:label="@string/car_permission_label_control_car_interior_lights" |
| 292 | android:description="@string/car_permission_desc_control_car_interior_lights" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 293 | |
| 294 | <!-- Allows an application to control the vehicle power state. |
| 295 | <p>Protection level: signature|privileged |
| 296 | --> |
Kai | 6ee9ca2 | 2019-01-08 12:06:36 -0800 | [diff] [blame] | 297 | <permission |
Kai | 68ec51d | 2018-08-02 17:34:35 -0700 | [diff] [blame] | 298 | android:name="android.car.permission.CAR_POWER" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 299 | android:protectionLevel="signature|privileged" |
Kai | 68ec51d | 2018-08-02 17:34:35 -0700 | [diff] [blame] | 300 | android:label="@string/car_permission_label_car_power" |
| 301 | android:description="@string/car_permission_desc_car_power" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 302 | |
| 303 | <!-- Allows an application to read the vehicle powertrain information. For example, it allows |
| 304 | an application to read the vehicle current gear, ignition state or parking break status. |
| 305 | <p>Protection level: normal |
| 306 | --> |
Kai | 68ec51d | 2018-08-02 17:34:35 -0700 | [diff] [blame] | 307 | <permission |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 308 | android:name="android.car.permission.CAR_POWERTRAIN" |
| 309 | android:protectionLevel="normal" |
| 310 | android:label="@string/car_permission_label_car_powertrain" |
| 311 | android:description="@string/car_permission_desc_car_powertrain" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 312 | |
| 313 | <!-- Allows an application to access {@link android.car.navigation.CarNavigationStatusManager} |
| 314 | to report navigation data. This information may be displayed by the vehicle in the |
| 315 | instrument cluster, head-up display or other locations. |
| 316 | <p>Protection level: signature|privileged |
| 317 | --> |
Kai | 68ee16b | 2018-03-22 11:57:37 -0700 | [diff] [blame] | 318 | <permission |
Keun-young Park | e31a8b2 | 2016-03-16 17:34:08 -0700 | [diff] [blame] | 319 | android:name="android.car.permission.CAR_NAVIGATION_MANAGER" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 320 | android:protectionLevel="signature|privileged" |
Pavel Maltsev | ce4ffd9 | 2016-03-09 10:56:23 -0800 | [diff] [blame] | 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 | --> |
Enrico Granata | 3c7a666 | 2017-02-23 18:07:59 -0800 | [diff] [blame] | 328 | <permission |
Kai | 25c0b85 | 2018-03-01 11:52:31 -0800 | [diff] [blame] | 329 | android:name="android.car.permission.CAR_DIAGNOSTICS" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 330 | android:protectionLevel="signature|privileged" |
Kai | 25c0b85 | 2018-03-01 11:52:31 -0800 | [diff] [blame] | 331 | android:label="@string/car_permission_label_diag_read" |
| 332 | android:description="@string/car_permission_desc_diag_read" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 333 | |
| 334 | <!-- Allows an application to clear diagnostic information from the vehicle. |
| 335 | <p>Protection level: signature|privileged |
| 336 | --> |
Enrico Granata | 3c7a666 | 2017-02-23 18:07:59 -0800 | [diff] [blame] | 337 | <permission |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 338 | android:name="android.car.permission.CLEAR_CAR_DIAGNOSTICS" |
| 339 | android:protectionLevel="signature|privileged" |
| 340 | android:label="@string/car_permission_label_diag_clear" |
| 341 | android:description="@string/car_permission_desc_diag_clear" /> |
| 342 | |
| 343 | <!-- Must be required by VMS client service to ensure only system can bind to it. |
| 344 | <p>Protection level: signature |
| 345 | --> |
Antonio Cortes | 12858a2 | 2017-03-01 07:37:17 -0800 | [diff] [blame] | 346 | <permission |
Mark Tabry | e1a7fa7 | 2019-01-11 12:34:38 -0800 | [diff] [blame] | 347 | android:name="android.car.permission.BIND_VMS_CLIENT" |
| 348 | android:protectionLevel="signature" |
| 349 | android:label="@string/car_permission_label_bind_vms_client" |
| 350 | android:description="@string/car_permission_desc_bind_vms_client" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 351 | |
| 352 | <!-- Allows an application to publich VMS messages. |
| 353 | <p>Protection level: signature|privileged |
| 354 | --> |
Mark Tabry | e1a7fa7 | 2019-01-11 12:34:38 -0800 | [diff] [blame] | 355 | <permission |
Antonio Cortes | 12858a2 | 2017-03-01 07:37:17 -0800 | [diff] [blame] | 356 | android:name="android.car.permission.VMS_PUBLISHER" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 357 | android:protectionLevel="signature|privileged" |
Antonio Cortes | 12858a2 | 2017-03-01 07:37:17 -0800 | [diff] [blame] | 358 | android:label="@string/car_permission_label_vms_publisher" |
| 359 | android:description="@string/car_permission_desc_vms_publisher" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 360 | |
| 361 | <!-- Allows an application to subscribe to VMS messages. |
| 362 | <p>Protection level: signature|privileged |
| 363 | --> |
Antonio Cortes | 12858a2 | 2017-03-01 07:37:17 -0800 | [diff] [blame] | 364 | <permission |
| 365 | android:name="android.car.permission.VMS_SUBSCRIBER" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 366 | android:protectionLevel="signature|privileged" |
Antonio Cortes | 12858a2 | 2017-03-01 07:37:17 -0800 | [diff] [blame] | 367 | android:label="@string/car_permission_label_vms_subscriber" |
| 368 | android:description="@string/car_permission_desc_vms_subscriber" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 369 | |
| 370 | <!-- Allows an application to read the vehicle driving state. |
| 371 | <p>Protection level: signature|privileged |
| 372 | --> |
Ram Periathiruvadi | 25c16f1 | 2017-11-17 16:48:37 -0800 | [diff] [blame] | 373 | <permission |
| 374 | android:name="android.car.permission.CAR_DRIVING_STATE" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 375 | android:protectionLevel="signature|privileged" |
Ram Periathiruvadi | 25c16f1 | 2017-11-17 16:48:37 -0800 | [diff] [blame] | 376 | android:label="@string/car_permission_label_driving_state" |
| 377 | android:description="@string/car_permission_desc_driving_state" /> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 378 | |
Keun-young Park | 4aeb4bf | 2015-12-08 18:31:33 -0800 | [diff] [blame] | 379 | <!-- may replace this with system permission if proper one is defined. --> |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 380 | <eat-comment /> |
| 381 | <!-- Allows an application to block other applications for driver distraction purposes. |
| 382 | Note: This permission may be replaced in future versions. |
| 383 | <p>Protection level: signature|privileged |
| 384 | --> |
Keun-young Park | 4aeb4bf | 2015-12-08 18:31:33 -0800 | [diff] [blame] | 385 | <permission |
Keun-young Park | e54ac27 | 2016-02-16 19:02:18 -0800 | [diff] [blame] | 386 | android:name="android.car.permission.CONTROL_APP_BLOCKING" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 387 | android:protectionLevel="signature|privileged" |
Keun-young Park | 4aeb4bf | 2015-12-08 18:31:33 -0800 | [diff] [blame] | 388 | android:label="@string/car_permission_label_control_app_blocking" |
| 389 | android:description="@string/car_permission_desc_control_app_blocking" /> |
| 390 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 391 | <!-- Allows an application to control the vehicle audio volume. |
| 392 | <p>Protection level: signature|privileged |
| 393 | --> |
Yao Chen | c4d442f | 2016-04-08 11:33:47 -0700 | [diff] [blame] | 394 | <permission |
| 395 | android:name="android.car.permission.CAR_CONTROL_AUDIO_VOLUME" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 396 | android:protectionLevel="signature|privileged" |
Yao Chen | c4d442f | 2016-04-08 11:33:47 -0700 | [diff] [blame] | 397 | android:label="@string/car_permission_label_audio_volume" |
| 398 | android:description="@string/car_permission_desc_audio_volume" /> |
| 399 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 400 | <!-- Allows an application to control the vehicle audio settings. |
| 401 | <p>Protection level: signature|privileged |
| 402 | --> |
Pavel Maltsev | 0477e29 | 2016-05-27 12:22:36 -0700 | [diff] [blame] | 403 | <permission |
Keun-young Park | fe1a8f1 | 2017-01-17 20:06:34 -0800 | [diff] [blame] | 404 | android:name="android.car.permission.CAR_CONTROL_AUDIO_SETTINGS" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 405 | android:protectionLevel="signature|privileged" |
Keun-young Park | fe1a8f1 | 2017-01-17 20:06:34 -0800 | [diff] [blame] | 406 | android:label="@string/car_permission_label_audio_settings" |
| 407 | android:description="@string/car_permission_desc_audio_settings" /> |
| 408 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 409 | <!-- Must be required by instrument cluster service to ensure only system can bind to it. |
| 410 | <p>Protection level: signature |
| 411 | --> |
Keun-young Park | fe1a8f1 | 2017-01-17 20:06:34 -0800 | [diff] [blame] | 412 | <permission |
Justin Paupore | eade0f2 | 2019-03-13 19:03:13 -0700 | [diff] [blame] | 413 | android:name="android.car.permission.RECEIVE_CAR_AUDIO_DUCKING_EVENTS" |
| 414 | android:protectionLevel="system|signature" |
| 415 | android:label="@string/car_permission_label_receive_ducking" |
| 416 | android:description="@string/car_permission_desc_receive_ducking" /> |
| 417 | |
| 418 | <permission |
Yao, Yuxing | 0811d5a | 2018-11-29 16:18:53 -0800 | [diff] [blame] | 419 | android:name="android.car.permission.BIND_INSTRUMENT_CLUSTER_RENDERER_SERVICE" |
| 420 | android:protectionLevel="signature" |
| 421 | android:label="@string/car_permission_label_bind_instrument_cluster_rendering" |
| 422 | android:description="@string/car_permission_desc_bind_instrument_cluster_rendering"/> |
Pavel Maltsev | 0477e29 | 2016-05-27 12:22:36 -0700 | [diff] [blame] | 423 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 424 | <!-- Allows an application to handle the vehicle input events. |
| 425 | <p>Protection level: signature |
| 426 | --> |
Vitalii Tomkiv | 2bd0692 | 2016-07-26 11:07:48 -0700 | [diff] [blame] | 427 | <permission |
Yao, Yuxing | 0811d5a | 2018-11-29 16:18:53 -0800 | [diff] [blame] | 428 | android:name="android.car.permission.BIND_CAR_INPUT_SERVICE" |
| 429 | android:protectionLevel="signature" |
| 430 | android:label="@string/car_permission_label_bind_input_service" |
| 431 | android:description="@string/car_permission_desc_bind_input_service"/> |
Vitalii Tomkiv | 2bd0692 | 2016-07-26 11:07:48 -0700 | [diff] [blame] | 432 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 433 | <!-- Allows an application to declare activities to be displayed in the instrument cluster. |
| 434 | <p>Protection level: signature|privileged |
| 435 | --> |
Pavel Maltsev | 905968c | 2017-07-16 19:48:57 -0700 | [diff] [blame] | 436 | <permission |
Yao, Yuxing | 0811d5a | 2018-11-29 16:18:53 -0800 | [diff] [blame] | 437 | android:name="android.car.permission.CAR_DISPLAY_IN_CLUSTER" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 438 | android:protectionLevel="signature|privileged" |
Yao, Yuxing | 0811d5a | 2018-11-29 16:18:53 -0800 | [diff] [blame] | 439 | android:label="@string/car_permission_car_display_in_cluster" |
| 440 | android:description="@string/car_permission_desc_car_display_in_cluster" /> |
Pavel Maltsev | 905968c | 2017-07-16 19:48:57 -0700 | [diff] [blame] | 441 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 442 | <!-- Allows an application to lunch applications in the instrument cluster. |
| 443 | <p>Protection level: signature|privileged |
| 444 | --> |
Yao, Yuxing | 0811d5a | 2018-11-29 16:18:53 -0800 | [diff] [blame] | 445 | <permission |
| 446 | android:name="android.car.permission.CAR_INSTRUMENT_CLUSTER_CONTROL" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 447 | android:protectionLevel="signature|privileged" |
Yao, Yuxing | 0811d5a | 2018-11-29 16:18:53 -0800 | [diff] [blame] | 448 | android:label="@string/car_permission_car_cluster_control" |
| 449 | android:description="@string/car_permission_desc_car_cluster_control" /> |
Pavel Maltsev | 905968c | 2017-07-16 19:48:57 -0700 | [diff] [blame] | 450 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 451 | <!-- Allows an application to communicate with a device in AOAP mode. |
| 452 | <p>Protection level: signature|privileged |
| 453 | --> |
Yao, Yuxing | 0811d5a | 2018-11-29 16:18:53 -0800 | [diff] [blame] | 454 | <permission |
Pavel Maltsev | 6b49b9b | 2019-03-14 10:14:24 -0700 | [diff] [blame] | 455 | android:name="android.car.permission.CAR_HANDLE_USB_AOAP_DEVICE" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 456 | android:protectionLevel="signature|privileged" |
Pavel Maltsev | 6b49b9b | 2019-03-14 10:14:24 -0700 | [diff] [blame] | 457 | android:label="@string/car_permission_label_car_handle_usb_aoap_device" |
| 458 | android:description="@string/car_permission_desc_car_handle_usb_aoap_device" /> |
| 459 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 460 | <!-- Allows an application to configure UX restrictions in the device. |
| 461 | <p>Protection level: signature|privileged |
| 462 | --> |
Pavel Maltsev | 6b49b9b | 2019-03-14 10:14:24 -0700 | [diff] [blame] | 463 | <permission |
Yao, Yuxing | 0811d5a | 2018-11-29 16:18:53 -0800 | [diff] [blame] | 464 | android:name="android.car.permission.CAR_UX_RESTRICTIONS_CONFIGURATION" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 465 | android:protectionLevel="signature|privileged" |
Yao, Yuxing | 0811d5a | 2018-11-29 16:18:53 -0800 | [diff] [blame] | 466 | android:label="@string/car_permission_label_car_ux_restrictions_configuration" |
| 467 | android:description="@string/car_permission_desc_car_ux_restrictions_configuration" /> |
| 468 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 469 | <!-- Allows an application to monitor flash storage usage. |
| 470 | <p>Protection level: signature|privileged |
| 471 | --> |
Yao, Yuxing | 0811d5a | 2018-11-29 16:18:53 -0800 | [diff] [blame] | 472 | <permission |
| 473 | android:name="android.car.permission.STORAGE_MONITORING" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 474 | android:protectionLevel="signature|privileged" |
Enrico Granata | 1172f88 | 2017-09-21 14:51:30 -0700 | [diff] [blame] | 475 | android:label="@string/car_permission_label_storage_monitoring" |
| 476 | android:description="@string/car_permission_desc_storage_monitoring" /> |
| 477 | |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 478 | <!-- Allows an application to enroll trusted devices. |
| 479 | <p>Protection level: signature|privileged |
| 480 | --> |
Ram Periathiruvadi | 97989be | 2019-03-28 18:20:05 -0700 | [diff] [blame] | 481 | <permission |
| 482 | android:name="android.car.permission.CAR_ENROLL_TRUST" |
Vasco Brito | d253c1e | 2019-04-23 18:10:11 -0700 | [diff] [blame] | 483 | android:protectionLevel="signature|privileged" |
Ram Periathiruvadi | 97989be | 2019-03-28 18:20:05 -0700 | [diff] [blame] | 484 | android:label="@string/car_permission_label_enroll_trust" |
| 485 | android:description="@string/car_permission_desc_enroll_trust" /> |
| 486 | |
Keun-young Park | 4727da3 | 2016-05-31 10:00:51 -0700 | [diff] [blame] | 487 | <uses-permission android:name="android.permission.CALL_PHONE" /> |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 488 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
Antonio Cortes | bb73c4c | 2017-05-16 14:18:47 -0700 | [diff] [blame] | 489 | <uses-permission android:name="android.permission.GRANT_RUNTIME_PERMISSIONS" /> |
Keun-young Park | 4727da3 | 2016-05-31 10:00:51 -0700 | [diff] [blame] | 490 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
| 491 | <uses-permission android:name="android.permission.MANAGE_ACTIVITY_STACKS" /> |
keunyoung | d32f4e6 | 2015-09-21 11:33:06 -0700 | [diff] [blame] | 492 | <uses-permission android:name="android.permission.MODIFY_AUDIO_ROUTING" /> |
Joseph Pirozzo | 317343d | 2016-01-25 10:22:37 -0800 | [diff] [blame] | 493 | <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE" /> |
Vitalii Tomkiv | e2142e5 | 2016-04-29 11:35:26 -0700 | [diff] [blame] | 494 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
Keun-young Park | 4727da3 | 2016-05-31 10:00:51 -0700 | [diff] [blame] | 495 | <uses-permission android:name="android.permission.READ_CALL_LOG" /> |
Vitalii Tomkiv | e2142e5 | 2016-04-29 11:35:26 -0700 | [diff] [blame] | 496 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
Keun-young Park | 4727da3 | 2016-05-31 10:00:51 -0700 | [diff] [blame] | 497 | <uses-permission android:name="android.permission.REAL_GET_TASKS" /> |
| 498 | <uses-permission android:name="android.permission.REBOOT" /> |
| 499 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 500 | <uses-permission android:name="android.permission.REMOVE_TASKS" /> |
| 501 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 502 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Ram Periathiruvadi | 7ed8418 | 2017-01-20 15:18:08 -0800 | [diff] [blame] | 503 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
Keun young Park | 7af7d6c | 2019-09-12 10:31:48 -0700 | [diff] [blame] | 504 | <uses-permission android:name="android.permission.MANAGE_APP_OPS_MODES" /> |
Ram Periathiruvadi | acb6024 | 2017-04-13 16:19:09 -0700 | [diff] [blame] | 505 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
Gregory Clark | d813606 | 2017-12-11 14:27:53 -0800 | [diff] [blame] | 506 | <uses-permission android:name="android.permission.LOCATION_HARDWARE" /> |
| 507 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
Ram Periathiruvadi | de0ca08 | 2019-03-20 11:16:44 -0700 | [diff] [blame] | 508 | <uses-permission android:name="android.permission.PROVIDE_TRUST_AGENT" /> |
Selim Gurun | c449216 | 2019-05-23 22:03:33 -0700 | [diff] [blame] | 509 | <uses-permission android:name="android.permission.READ_LOGS" /> |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 510 | |
Colin Cross | 4543e61 | 2018-06-14 15:57:30 -0700 | [diff] [blame] | 511 | <application android:label="@string/app_title" |
Vitalii Tomkiv | 860f82e | 2016-05-06 13:20:51 -0700 | [diff] [blame] | 512 | android:directBootAware="true" |
Pavel Maltsev | 1f1d00b | 2016-04-20 21:46:34 -0700 | [diff] [blame] | 513 | android:allowBackup="false" |
Pavel Maltsev | 0477e29 | 2016-05-27 12:22:36 -0700 | [diff] [blame] | 514 | android:persistent="true"> |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 515 | |
Paul Duffin | cb64145 | 2017-12-08 00:02:43 +0000 | [diff] [blame] | 516 | <uses-library android:name="android.test.runner" /> |
Gregory Clark | d813606 | 2017-12-11 14:27:53 -0800 | [diff] [blame] | 517 | <service android:name=".CarService" |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 518 | android:singleUser="true"> |
| 519 | <intent-filter> |
Keun-young Park | e54ac27 | 2016-02-16 19:02:18 -0800 | [diff] [blame] | 520 | <action android:name="android.car.ICar" /> |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 521 | </intent-filter> |
| 522 | </service> |
Ram Periathiruvadi | acb6024 | 2017-04-13 16:19:09 -0700 | [diff] [blame] | 523 | <service android:name=".PerUserCarService" android:exported="false" /> |
Ram Periathiruvadi | de0ca08 | 2019-03-20 11:16:44 -0700 | [diff] [blame] | 524 | |
| 525 | <service |
| 526 | android:name="com.android.car.trust.CarBleTrustAgent" |
| 527 | android:permission="android.permission.BIND_TRUST_AGENT" |
| 528 | android:singleUser="true"> |
| 529 | <intent-filter> |
| 530 | <action android:name="android.service.trust.TrustAgentService" /> |
| 531 | <category android:name="android.intent.category.DEFAULT" /> |
| 532 | </intent-filter> |
| 533 | <!-- Warning: the meta data must be included if the service is direct boot aware. |
| 534 | If not included, the device will crash before boot completes. Rendering the |
| 535 | device unusable. --> |
| 536 | <meta-data android:name="android.service.trust.trustagent" |
| 537 | android:resource="@xml/car_trust_agent"/> |
| 538 | </service> |
Keun-young Park | 4727da3 | 2016-05-31 10:00:51 -0700 | [diff] [blame] | 539 | <activity android:name="com.android.car.pm.ActivityBlockingActivity" |
Yao, Yuxing | d525de1 | 2019-05-06 15:11:48 -0700 | [diff] [blame] | 540 | android:documentLaunchMode="always" |
Keun-young Park | 4727da3 | 2016-05-31 10:00:51 -0700 | [diff] [blame] | 541 | android:excludeFromRecents="true" |
Yao, Yuxing | d1d6a37 | 2018-05-08 10:37:43 -0700 | [diff] [blame] | 542 | android:exported="false" |
Yao, Yuxing | d525de1 | 2019-05-06 15:11:48 -0700 | [diff] [blame] | 543 | android:theme="@android:style/Theme.Translucent.NoTitleBar"> |
Keun-young Park | 4727da3 | 2016-05-31 10:00:51 -0700 | [diff] [blame] | 544 | <intent-filter> |
| 545 | <action android:name="android.intent.action.MAIN" /> |
| 546 | </intent-filter> |
| 547 | </activity> |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 548 | </application> |
| 549 | </manifest> |