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
14 lines
272 B
Makefile
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)
|