Jason Monk | d6f1ba6 | 2018-08-16 15:00:07 -0500 | [diff] [blame] | 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 |
| 6 | # this file. |
| 7 | # |
| 8 | # For example: |
| 9 | # |
| 10 | # LOCAL_RESOURCE_DIR := \ |
| 11 | # $(LOCAL_PATH)/res |
| 12 | # |
| 13 | # include vendor/support/common.mk |
| 14 | # |
| 15 | |
| 16 | ifeq ($(LOCAL_USE_AAPT2),true) |
| 17 | LOCAL_STATIC_ANDROID_LIBRARIES += \ |
| 18 | android-support-annotations \ |
| 19 | android-support-v4 \ |
| 20 | VendorSupportLib |
| 21 | else |
| 22 | LOCAL_RESOURCE_DIR += $(call my-dir)/res |
| 23 | |
| 24 | |
| 25 | ## Include transitive dependencies below |
| 26 | |
| 27 | # Include support-v7-appcompat, if not already included |
| 28 | ifeq (,$(findstring android-support-v7-appcompat,$(LOCAL_STATIC_JAVA_LIBRARIES))) |
| 29 | LOCAL_RESOURCE_DIR += frameworks/support/v7/appcompat/res |
| 30 | LOCAL_AAPT_FLAGS += --extra-packages android.support.v7.appcompat |
| 31 | LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-appcompat |
| 32 | endif |
| 33 | |
| 34 | # Include support-v7-recyclerview, if not already included |
| 35 | ifeq (,$(findstring android-support-v7-recyclerview,$(LOCAL_STATIC_JAVA_LIBRARIES))) |
| 36 | LOCAL_RESOURCE_DIR += frameworks/support/v7/recyclerview/res |
| 37 | LOCAL_AAPT_FLAGS += --extra-packages android.support.v7.recyclerview |
| 38 | LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-recyclerview |
| 39 | endif |
| 40 | |
| 41 | # Include android-support-v7-preference, if not already included |
| 42 | ifeq (,$(findstring android-support-v7-preference,$(LOCAL_STATIC_JAVA_LIBRARIES))) |
| 43 | LOCAL_RESOURCE_DIR += frameworks/support/v7/preference/res |
| 44 | LOCAL_AAPT_FLAGS += --extra-packages android.support.v7.preference |
| 45 | LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-preference |
| 46 | endif |
| 47 | |
| 48 | # Include android-support-v14-preference, if not already included |
| 49 | ifeq (,$(findstring android-support-v14-preference,$(LOCAL_STATIC_JAVA_LIBRARIES))) |
| 50 | LOCAL_RESOURCE_DIR += frameworks/support/v14/preference/res |
| 51 | LOCAL_AAPT_FLAGS += --extra-packages android.support.v14.preference |
| 52 | LOCAL_STATIC_JAVA_LIBRARIES += android-support-v14-preference |
| 53 | endif |
| 54 | |
pimpmaneaton | 2bca34e | 2019-07-15 12:31:35 -0600 | [diff] [blame] | 55 | LOCAL_AAPT_FLAGS += --auto-add-overlay --extra-packages com.bliss.support |
Jason Monk | d6f1ba6 | 2018-08-16 15:00:07 -0500 | [diff] [blame] | 56 | |
| 57 | LOCAL_STATIC_JAVA_LIBRARIES += \ |
| 58 | android-support-annotations \ |
| 59 | android-support-v4 \ |
| 60 | VendorSupportLib |
| 61 | endif |