blob: 68405a5214ac480b810dcfe60aa6e13f34dafe72 [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)
Alexander Martinz42f46722022-12-20 16:56:55 +010018
Alexander Martinz1dc6b312020-02-04 17:32:06 +010019include $(CLEAR_VARS)
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
23LOCAL_SRC_FILES := $(call all-java-files-under, src)
24LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
25LOCAL_SYSTEM_EXT_MODULE := true
26LOCAL_CERTIFICATE := platform
27LOCAL_SDK_VERSION := current
Alexander Martinz1dc6b312020-02-04 17:32:06 +010028
29# Override GMS sample integration packages
30LOCAL_OVERRIDES_PACKAGES := \
Alexander Martinz42f46722022-12-20 16:56:55 +010031 AndroidSGmsBetaOverlay \
Alexander Martinz1dc6b312020-02-04 17:32:06 +010032 GmsSampleIntegration \
33 GmsEEAType4cIntegration \
34
Alexander Martinz42f46722022-12-20 16:56:55 +010035# Override Lineage wallpapers
36LOCAL_OVERRIDES_PACKAGES += \
37 Backgrounds \
Alexander Martinz1dc6b312020-02-04 17:32:06 +010038
39include $(BUILD_PACKAGE)