common-gingerbread.mk 1018 B

12345678910111213141516171819202122232425262728
  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-gingerbread.mk
  13. #
  14. # Path to directory of setup wizard lib (e.g. frameworks/opt/setupwizard/library)
  15. suwlib_dir := $(dir $(lastword $(MAKEFILE_LIST)))
  16. ifeq (,$(findstring setup-wizard-lib-gingerbread-compat,$(LOCAL_STATIC_ANDROID_LIBRARIES)))
  17. LOCAL_STATIC_ANDROID_LIBRARIES += setup-wizard-lib-gingerbread-compat
  18. endif
  19. ifeq (,$(findstring androidx.appcompat_appcompat,$(LOCAL_STATIC_ANDROID_LIBRARIES)))
  20. LOCAL_STATIC_ANDROID_LIBRARIES += androidx.appcompat_appcompat
  21. endif
  22. ifeq (,$(findstring androidx.recyclerview_recyclerview,$(LOCAL_STATIC_ANDROID_LIBRARIES)))
  23. LOCAL_STATIC_ANDROID_LIBRARIES += androidx.recyclerview_recyclerview
  24. endif