Files
android_development/apps/PushApiAuthenticator/Android.mk
Dmitry Dementyev b99e8db305 Update PushAPI authenticator to work with new Discovery API.
Add dummy certificates to PushApi authenticator and test apps to
simplify their usage:

Bug: 33046496
Test: manual tests.
Change-Id: I94e5fa1ac430da77c0f74ed87bd12467a3ba76b8
2017-01-12 14:46:16 -08:00

20 lines
446 B
Makefile

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