Anirudh Dewani | 1263449 | 2011-09-20 21:16:55 +0530 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := samples |
| 5 | |
| 6 | # Only compile source java files in this apk. |
| 7 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 8 | |
Jimmy Chen | fc884a6 | 2018-09-07 18:29:51 +0800 | [diff] [blame] | 9 | LOCAL_STATIC_ANDROID_LIBRARIES += \ |
| 10 | android-support-v4 |
| 11 | |
Anirudh Dewani | 1263449 | 2011-09-20 21:16:55 +0530 | [diff] [blame] | 12 | LOCAL_PACKAGE_NAME := WiFiDirectDemo |
| 13 | |
| 14 | LOCAL_SDK_VERSION := current |
| 15 | |
Christopher Ferris | 0e2da18 | 2016-04-19 14:27:18 -0700 | [diff] [blame] | 16 | LOCAL_DEX_PREOPT := false |
| 17 | |
Anirudh Dewani | 1263449 | 2011-09-20 21:16:55 +0530 | [diff] [blame] | 18 | include $(BUILD_PACKAGE) |
| 19 | |
| 20 | # Use the following include to make our test apk. |
| 21 | include $(call all-makefiles-under,$(LOCAL_PATH)) |