blob: 9ebaea0420d7a258bc06ccf8922d5a711cdc6225 [file] [log] [blame]
Alexander Martinz1dc6b312020-02-04 17:32:06 +01001#
Alexander Martinz42f46722022-12-20 16:56:55 +01002# Copyright (C) 2020-2022 SHIFT GmbH
Alexander Martinz1dc6b312020-02-04 17:32:06 +01003#
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
17LOCAL_PATH := $(call my-dir)
18include $(CLEAR_VARS)
Alexander Martinz459be842023-05-05 10:53:06 +020019
Alexander Martinz4611e062022-10-17 11:13:04 +020020LOCAL_PACKAGE_NAME := SHIFT-PartnerCustomization
Alexander Martinz42f46722022-12-20 16:56:55 +010021LOCAL_MODULE_OWNER := shift
22LOCAL_MODULE_TAGS := optional
Alexander Martinz459be842023-05-05 10:53:06 +020023
Alexander Martinz42f46722022-12-20 16:56:55 +010024LOCAL_SRC_FILES := $(call all-java-files-under, src)
Alexander Martinz459be842023-05-05 10:53:06 +020025
26LOCAL_AAPT_FLAGS := --auto-add-overlay
27
Alexander Martinz42f46722022-12-20 16:56:55 +010028LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
Alexander Martinz459be842023-05-05 10:53:06 +020029LOCAL_RESOURCE_DIR += $(LOCAL_PATH)/res_1080p
Alexander Martinz1dc6b312020-02-04 17:32:06 +010030
31# Override GMS sample integration packages
32LOCAL_OVERRIDES_PACKAGES := \
Alexander Martinz42f46722022-12-20 16:56:55 +010033 AndroidSGmsBetaOverlay \
Alexander Martinz1dc6b312020-02-04 17:32:06 +010034 GmsSampleIntegration \
35 GmsEEAType4cIntegration \
36
Alexander Martinz42f46722022-12-20 16:56:55 +010037# Override Lineage wallpapers
38LOCAL_OVERRIDES_PACKAGES += \
39 Backgrounds \
Alexander Martinz1dc6b312020-02-04 17:32:06 +010040
Alexander Martinz459be842023-05-05 10:53:06 +020041LOCAL_SYSTEM_EXT_MODULE := true
42LOCAL_CERTIFICATE := platform
43LOCAL_SDK_VERSION := current
44
Alexander Martinz1dc6b312020-02-04 17:32:06 +010045include $(BUILD_PACKAGE)