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) |
| 18 | include $(CLEAR_VARS) |
Alexander Martinz | 459be84 | 2023-05-05 10:53:06 +0200 | [diff] [blame] | 19 | |
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 |
Alexander Martinz | 459be84 | 2023-05-05 10:53:06 +0200 | [diff] [blame] | 23 | |
Alexander Martinz | 42f4672 | 2022-12-20 16:56:55 +0100 | [diff] [blame] | 24 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
Alexander Martinz | 459be84 | 2023-05-05 10:53:06 +0200 | [diff] [blame] | 25 | |
| 26 | LOCAL_AAPT_FLAGS := --auto-add-overlay |
| 27 | |
Alexander Martinz | 42f4672 | 2022-12-20 16:56:55 +0100 | [diff] [blame] | 28 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
Alexander Martinz | 459be84 | 2023-05-05 10:53:06 +0200 | [diff] [blame] | 29 | LOCAL_RESOURCE_DIR += $(LOCAL_PATH)/res_1080p |
Alexander Martinz | 1dc6b31 | 2020-02-04 17:32:06 +0100 | [diff] [blame] | 30 | |
| 31 | # Override GMS sample integration packages |
| 32 | LOCAL_OVERRIDES_PACKAGES := \ |
Alexander Martinz | 42f4672 | 2022-12-20 16:56:55 +0100 | [diff] [blame] | 33 | AndroidSGmsBetaOverlay \ |
Alexander Martinz | 1dc6b31 | 2020-02-04 17:32:06 +0100 | [diff] [blame] | 34 | GmsSampleIntegration \ |
| 35 | GmsEEAType4cIntegration \ |
| 36 | |
Alexander Martinz | 42f4672 | 2022-12-20 16:56:55 +0100 | [diff] [blame] | 37 | # Override Lineage wallpapers |
| 38 | LOCAL_OVERRIDES_PACKAGES += \ |
| 39 | Backgrounds \ |
Alexander Martinz | 1dc6b31 | 2020-02-04 17:32:06 +0100 | [diff] [blame] | 40 | |
Alexander Martinz | 459be84 | 2023-05-05 10:53:06 +0200 | [diff] [blame] | 41 | LOCAL_SYSTEM_EXT_MODULE := true |
| 42 | LOCAL_CERTIFICATE := platform |
| 43 | LOCAL_SDK_VERSION := current |
| 44 | |
Alexander Martinz | 1dc6b31 | 2020-02-04 17:32:06 +0100 | [diff] [blame] | 45 | include $(BUILD_PACKAGE) |