diff options
| author | 2021-03-02 16:48:34 -0800 | |
|---|---|---|
| committer | 2021-03-04 10:26:51 -0800 | |
| commit | 033f3edb72bac38f8afb95ac494eb76ed47dd356 (patch) | |
| tree | e0aee41427e8d987bf1051758affed84be299fe4 | |
| parent | db318cc890022a6d09432e258bae3c55827b3e5c (diff) | |
Configure privapp perms for rotary service
Test: Check for SecurityException on boot in sc-dev branch
Bug: 181577696
Change-Id: Ib0596f87c81fda75c830989ecc57059392b7fc42
Merged-In: Ib0596f87c81fda75c830989ecc57059392b7fc42
| -rw-r--r-- | data/etc/car/Android.bp | 7 | ||||
| -rw-r--r-- | data/etc/car/com.android.car.rotary.xml | 22 |
2 files changed, 29 insertions, 0 deletions
diff --git a/data/etc/car/Android.bp b/data/etc/car/Android.bp index c5a460b78474..dc892080417d 100644 --- a/data/etc/car/Android.bp +++ b/data/etc/car/Android.bp @@ -163,3 +163,10 @@ prebuilt_etc { src: "com.android.car.activityresolver.xml", filename_from_src: true, } + +prebuilt_etc { + name: "allowed_privapp_com.android.car.rotary", + sub_dir: "permissions", + src: "com.android.car.rotary.xml", + filename_from_src: true, +} diff --git a/data/etc/car/com.android.car.rotary.xml b/data/etc/car/com.android.car.rotary.xml new file mode 100644 index 000000000000..575275507ea5 --- /dev/null +++ b/data/etc/car/com.android.car.rotary.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2021 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<permissions> + <privapp-permissions package="com.android.car.rotary"> + <permission name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> + <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + </privapp-permissions> +</permissions> |