Files
android_development/samples/BusinessCard/Android.mk
Dmitri Plotnikov 5635cf46c1 A sample application that demonstrates use of legacy and current contacts APIs.
The application provides two implementations for access to contacts, one based
on legacy API, the other based on the current API.  The correct implementation
is chosen at runtime based on the version of the SDK.

Change-Id: Iae0bc8564be420ff504a5dc760b935630a7664e6
2009-10-29 14:23:44 -07:00

14 lines
272 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 := BusinessCard
LOCAL_SDK_VERSION := current
include $(BUILD_PACKAGE)