You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1018 B
29 lines
1018 B
#
|
|
# Include this make file to build your application against this module.
|
|
#
|
|
# Make sure to include it after you've set all your desired LOCAL variables.
|
|
# Note that you must explicitly set your LOCAL_RESOURCE_DIR before including this file.
|
|
#
|
|
# For example:
|
|
#
|
|
# LOCAL_RESOURCE_DIR := \
|
|
# $(LOCAL_PATH)/res
|
|
#
|
|
# include frameworks/opt/setupwizard/library/common-gingerbread.mk
|
|
#
|
|
|
|
# Path to directory of setup wizard lib (e.g. frameworks/opt/setupwizard/library)
|
|
suwlib_dir := $(dir $(lastword $(MAKEFILE_LIST)))
|
|
|
|
ifeq (,$(findstring setup-wizard-lib-gingerbread-compat,$(LOCAL_STATIC_ANDROID_LIBRARIES)))
|
|
LOCAL_STATIC_ANDROID_LIBRARIES += setup-wizard-lib-gingerbread-compat
|
|
endif
|
|
|
|
ifeq (,$(findstring androidx.appcompat_appcompat,$(LOCAL_STATIC_ANDROID_LIBRARIES)))
|
|
LOCAL_STATIC_ANDROID_LIBRARIES += androidx.appcompat_appcompat
|
|
endif
|
|
|
|
ifeq (,$(findstring androidx.recyclerview_recyclerview,$(LOCAL_STATIC_ANDROID_LIBRARIES)))
|
|
LOCAL_STATIC_ANDROID_LIBRARIES += androidx.recyclerview_recyclerview
|
|
endif
|