Alexander Martinz | 1dc6b31 | 2020-02-04 17:32:06 +0100 | [diff] [blame] | 1 | # |
Alexander Martinz | 42f4672 | 2022-12-20 16:56:55 +0100 | [diff] [blame] | 2 | # Copyright (C) 2020-2022 SHIFT GmbH |
Alexander Martinz | 1dc6b31 | 2020-02-04 17:32:06 +0100 | [diff] [blame] | 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 | LOCAL_PATH := $(call my-dir) |
Alexander Martinz | 42f4672 | 2022-12-20 16:56:55 +0100 | [diff] [blame] | 18 | |
Alexander Martinz | 1dc6b31 | 2020-02-04 17:32:06 +0100 | [diff] [blame] | 19 | include $(CLEAR_VARS) |
Alexander Martinz | 4611e06 | 2022-10-17 11:13:04 +0200 | [diff] [blame] | 20 | LOCAL_PACKAGE_NAME := SHIFT-PartnerCustomization |
Alexander Martinz | 42f4672 | 2022-12-20 16:56:55 +0100 | [diff] [blame] | 21 | LOCAL_MODULE_OWNER := shift |
| 22 | LOCAL_MODULE_TAGS := optional |
| 23 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 24 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
| 25 | LOCAL_SYSTEM_EXT_MODULE := true |
| 26 | LOCAL_CERTIFICATE := platform |
| 27 | LOCAL_SDK_VERSION := current |
Alexander Martinz | 1dc6b31 | 2020-02-04 17:32:06 +0100 | [diff] [blame] | 28 | |
| 29 | # Override GMS sample integration packages |
| 30 | LOCAL_OVERRIDES_PACKAGES := \ |
Alexander Martinz | 42f4672 | 2022-12-20 16:56:55 +0100 | [diff] [blame] | 31 | AndroidSGmsBetaOverlay \ |
Alexander Martinz | 1dc6b31 | 2020-02-04 17:32:06 +0100 | [diff] [blame] | 32 | GmsSampleIntegration \ |
| 33 | GmsEEAType4cIntegration \ |
| 34 | |
Alexander Martinz | 42f4672 | 2022-12-20 16:56:55 +0100 | [diff] [blame] | 35 | # Override Lineage wallpapers |
| 36 | LOCAL_OVERRIDES_PACKAGES += \ |
| 37 | Backgrounds \ |
Alexander Martinz | 1dc6b31 | 2020-02-04 17:32:06 +0100 | [diff] [blame] | 38 | |
| 39 | include $(BUILD_PACKAGE) |