mirror of
https://github.com/PixelExperience-Devices/device_xiaomi_miatoll.git
synced 2025-05-02 12:17:31 +09:00
https://github.com/ArianK16a/android_device_xiaomi_davinci This tells Inputdispatcher to ignore inputs from our Fingerprint scanner, as that seems to be causing ANRs
22 lines
427 B
Makefile
22 lines
427 B
Makefile
#
|
|
# Copyright (C) 2021 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
LOCAL_PACKAGE_NAME := KeyHandler
|
|
|
|
LOCAL_CERTIFICATE := platform
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
include $(BUILD_PACKAGE)
|