mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
6deaa3b648
* Apply the default Oreo theme and inherit the layouts from Google for the Settings app, in order to keep UI consistency. * Get rid of SettingsDrawerActivity as it no longer fits in. * Add required appcompat and preference support libraries. * Integrate into display settings category using IA. Change-Id: I8438e0ebec27085df2be4668f8f7170d2010fb20
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_PACKAGE_NAME := AdvancedDisplay
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
android-support-v4 \
|
|
android-support-v7-appcompat \
|
|
android-support-v7-preference \
|
|
android-support-v7-recyclerview \
|
|
android-support-v13 \
|
|
android-support-v14-preference \
|
|
org.lineageos.platform.internal
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
LOCAL_RESOURCE_DIR := \
|
|
$(LOCAL_PATH)/res \
|
|
$(TOP)/packages/resources/devicesettings/res \
|
|
frameworks/support/v14/preference/res \
|
|
frameworks/support/v7/appcompat/res \
|
|
frameworks/support/v7/preference/res \
|
|
frameworks/support/v7/recyclerview/res
|
|
|
|
LOCAL_AAPT_FLAGS := \
|
|
--auto-add-overlay \
|
|
--extra-packages android.support.v14.preference \
|
|
--extra-packages android.support.v7.appcompat \
|
|
--extra-packages android.support.v7.preference \
|
|
--extra-packages android.support.v7.recyclerview
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|