blob: 91162fcad959ee09d1bfe8a8e5184d43feefd82d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#
# Copyright (C) 2022 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
# Inherit from sm6375-common
$(call inherit-product, device/xiaomi/sm6375-common/holi.mk)
PRODUCT_SHIPPING_API_LEVEL := 30
# Device uses high-density artwork where available
PRODUCT_AAPT_CONFIG := normal
PRODUCT_AAPT_PREF_CONFIG := xhdpi
# Boot animation
TARGET_SCREEN_HEIGHT := 2400
TARGET_SCREEN_WIDTH := 1080
# Overlays
DEVICE_PACKAGE_OVERLAYS += \
$(LOCAL_PATH)/overlay
# Inherit from vendor blobs
$(call inherit-product, vendor/xiaomi/veux/veux-vendor.mk)
|