Android.mk 386 Bytes
Newer Older
1 2 3
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

4
LOCAL_MODULE_TAGS := optional
5 6 7 8 9 10

LOCAL_SRC_FILES := $(call all-java-files-under, src)

LOCAL_PACKAGE_NAME := Settings
LOCAL_CERTIFICATE := platform

11 12
LOCAL_PROGUARD_FLAGS := -include $(LOCAL_PATH)/proguard.flags

13 14 15 16
include $(BUILD_PACKAGE)

# Use the folloing include to make our test apk.
include $(call all-makefiles-under,$(LOCAL_PATH))