blob: 5a76260f3de1e28960e3f06d853b8cf5ade4ffbb [file] [log] [blame]
Anirudh Dewani12634492011-09-20 21:16:55 +05301LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := samples
5
6# Only compile source java files in this apk.
7LOCAL_SRC_FILES := $(call all-java-files-under, src)
8
Jimmy Chenfc884a62018-09-07 18:29:51 +08009LOCAL_STATIC_ANDROID_LIBRARIES += \
10 android-support-v4
11
Anirudh Dewani12634492011-09-20 21:16:55 +053012LOCAL_PACKAGE_NAME := WiFiDirectDemo
13
14LOCAL_SDK_VERSION := current
15
Christopher Ferris0e2da182016-04-19 14:27:18 -070016LOCAL_DEX_PREOPT := false
17
Anirudh Dewani12634492011-09-20 21:16:55 +053018include $(BUILD_PACKAGE)
19
20# Use the following include to make our test apk.
21include $(call all-makefiles-under,$(LOCAL_PATH))