Need to add proguard.flag, as the Activity crashes without it. Change-Id: Icbc75be4a4183920ed472ac64cc509115260f865
17 lines
386 B
Makefile
17 lines
386 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_PACKAGE_NAME := Settings
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
LOCAL_PROGUARD_FLAGS := -include $(LOCAL_PATH)/proguard.flags
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
# Use the folloing include to make our test apk.
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|