blob: c2187d6c4fc636e1010f23382fa9b51a8f29a6c0 [file] [log] [blame]
Dmitri Plotnikov5635cf42009-10-28 18:36:32 -07001LOCAL_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
9LOCAL_PACKAGE_NAME := BusinessCard
10
11LOCAL_SDK_VERSION := current
12
Christopher Ferris0e2da182016-04-19 14:27:18 -070013LOCAL_DEX_PREOPT := false
14
Mathieu Chartier8f857662017-07-25 14:38:51 -070015LOCAL_PROGUARD_ENABLED := disabled
16
Dmitri Plotnikov5635cf42009-10-28 18:36:32 -070017include $(BUILD_PACKAGE)