3e41a7f856
These packages are now available in the shim apex package, which is made available in both flattened and unflattened apex configurations. Bug: 138429615 Test: atest CtsPrivilegedUpdateTests CtsPermissionTestCases CtsStagedInstallHostTestCases; (on both flattened and unflattened configurations) Exempt-From-Owner-Approval: approved in https://android-review.googlesource.com/c/platform/build/+/1180943 Change-Id: I03939f6c3e711d5887da201e32173f86a6b0289e
23 lines
867 B
Makefile
23 lines
867 B
Makefile
#
|
|
# Copyright (C) 2019 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.
|
|
#
|
|
|
|
# Inherit this when the target needs to support updating APEXes
|
|
|
|
ifneq ($(OVERRIDE_TARGET_FLATTEN_APEX),true)
|
|
PRODUCT_PACKAGES += com.android.apex.cts.shim.v1_prebuilt
|
|
PRODUCT_PROPERTY_OVERRIDES := ro.apex.updatable=true
|
|
TARGET_FLATTEN_APEX := false
|
|
endif
|