Files
android_development/samples/LceDemo/Android.mk
fenglu a442d40246 Add Link Capacity Estimation (LCE) demo app.
Change-Id: I42f6a4fa5c989559db75d6d658081b44f7850b7a
2016-03-31 10:44:15 -07:00

20 lines
397 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := samples
# Only compile source java files in this apk.
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_PACKAGE_NAME := LceDemo
LOCAL_SDK_VERSION := current
LOCAL_MODULE_TAGS := tests
include $(BUILD_PACKAGE)
# Use the following include to make our test apk.
include $(call all-makefiles-under,$(LOCAL_PATH))