Move AppNavigation to SupportAppNavigation - this one uses the support lib navigation helpers. Add AppNavigation as an implementation of the same sample using the framework features in JB. Change-Id: I59e0f2e3e11ccccc277b177aee87bd88da8eb2c6
18 lines
379 B
Makefile
18 lines
379 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := samples tests
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_PACKAGE_NAME := AppNavigation
|
|
|
|
LOCAL_SDK_VERSION := current
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
# Use the following include to make our test apk.
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|