Android.mk 396 B

123456789101112131415161718
  1. LOCAL_PATH:= $(call my-dir)
  2. include $(CLEAR_VARS)
  3. LOCAL_MODULE_TAGS := samples
  4. # Only compile source java files in this apk.
  5. LOCAL_SRC_FILES := $(call all-java-files-under, src)
  6. LOCAL_PACKAGE_NAME := Aardwolf
  7. LOCAL_SDK_VERSION := current
  8. LOCAL_DEX_PREOPT := false
  9. include $(BUILD_PACKAGE)
  10. # Use the following include to make our test apk.
  11. include $(call all-makefiles-under,$(LOCAL_PATH))