mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-21 03:55:31 -04:00
37 lines
1,010 B
Makefile
37 lines
1,010 B
Makefile
# Copyright (C) 2025 The LineageOS Project
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Inherit common device configuration
|
|
$(call inherit-product, device/samsung/exynos7885-common/exynos7885-common.mk)
|
|
|
|
# Inherit proprietary files setup
|
|
$(call inherit-product, vendor/samsung/a20/a20-vendor.mk)
|
|
|
|
# Inherit dalvik config
|
|
$(call inherit-product, frameworks/native/build/phone-xhdpi-2048-dalvik-heap.mk)
|
|
|
|
# Target Info
|
|
TARGET_DEVICE := a20
|
|
TARGET_SOC := exynos7884B
|
|
|
|
# Bootanimation
|
|
TARGET_SCREEN_HEIGHT := 1560
|
|
TARGET_SCREEN_WIDTH := 720
|
|
|
|
# Fingerprint
|
|
PRODUCT_PACKAGES += \
|
|
android.hardware.biometrics.fingerprint-service.samsung
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
frameworks/native/data/etc/android.hardware.fingerprint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.fingerprint.xml
|
|
|
|
# FM radio
|
|
PRODUCT_PACKAGES += \
|
|
S5E7885FMRadio \
|
|
miku.dayo.hardware.fmradio-service
|
|
|
|
# Overlay
|
|
DEVICE_PACKAGE_OVERLAYS += $(LOCAL_PATH)/overlay
|
|
|
|
# Soong namespaces
|
|
PRODUCT_SOONG_NAMESPACES += $(LOCAL_PATH)
|