1#
2# Include this make file to build your application against this module.
3#
4# Make sure to include it after you've set all your desired LOCAL variables.
5# Note that you must explicitly set your LOCAL_RESOURCE_DIR before including this file.
6#
7# For example:
8#
9#   LOCAL_RESOURCE_DIR := \
10#        $(LOCAL_PATH)/res
11#
12#   include frameworks/opt/setupwizard/library/common-eclair-mr1.mk
13#
14
15# Check that LOCAL_RESOURCE_DIR is defined
16ifeq (,$(LOCAL_RESOURCE_DIR))
17$(error LOCAL_RESOURCE_DIR must be defined)
18endif
19
20# Add --auto-add-overlay flag if not present
21ifeq (,$(findstring --auto-add-overlay, $(LOCAL_AAPT_FLAGS)))
22LOCAL_AAPT_FLAGS += --auto-add-overlay
23endif
24
25# Include setup wizard library, if not already included
26ifeq (,$(findstring setup-wizard-lib-eclair-mr1-compat,$(LOCAL_STATIC_JAVA_LIBRARIES)))
27LOCAL_RESOURCE_DIR += \
28    $(call my-dir)/main/res \
29    $(call my-dir)/eclair-mr1/res
30LOCAL_AAPT_FLAGS += --extra-packages com.android.setupwizardlib
31LOCAL_STATIC_JAVA_LIBRARIES += setup-wizard-lib-eclair-mr1-compat
32endif
33
34## Include transitive dependencies below
35
36# Include support-v7-appcompat, if not already included
37ifeq (,$(findstring android-support-v7-appcompat,$(LOCAL_STATIC_JAVA_LIBRARIES)))
38LOCAL_RESOURCE_DIR += frameworks/support/v7/appcompat/res
39LOCAL_AAPT_FLAGS += --extra-packages android.support.v7.appcompat
40LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-appcompat
41endif
42