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 16 ifeq (,$(LOCAL_RESOURCE_DIR)) 17 $(error LOCAL_RESOURCE_DIR must be defined) 18 endif 19 20 # Add --auto-add-overlay flag if not present 21 ifeq (,$(findstring --auto-add-overlay, $(LOCAL_AAPT_FLAGS))) 22 LOCAL_AAPT_FLAGS += --auto-add-overlay 23 endif 24 25 # Include setup wizard library, if not already included 26 ifeq (,$(findstring setup-wizard-lib-eclair-mr1-compat,$(LOCAL_STATIC_JAVA_LIBRARIES))) 27 LOCAL_RESOURCE_DIR += \ 28 $(call my-dir)/main/res \ 29 $(call my-dir)/eclair-mr1/res 30 LOCAL_AAPT_FLAGS += --extra-packages com.android.setupwizardlib 31 LOCAL_STATIC_JAVA_LIBRARIES += setup-wizard-lib-eclair-mr1-compat 32 endif 33 34 ## Include transitive dependencies below 35 36 # Include support-v7-appcompat, if not already included 37 ifeq (,$(findstring android-support-v7-appcompat,$(LOCAL_STATIC_JAVA_LIBRARIES))) 38 LOCAL_RESOURCE_DIR += frameworks/support/v7/appcompat/res 39 LOCAL_AAPT_FLAGS += --extra-packages android.support.v7.appcompat 40 LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-appcompat 41 endif 42