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

Wink Saville's avatar
Wink Saville committed
4
LOCAL_JAVA_LIBRARIES := bouncycastle telephony-common
5
LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4 android-support-v13 jsr305
6

7
LOCAL_MODULE_TAGS := optional
8 9 10 11 12 13

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

LOCAL_PACKAGE_NAME := Settings
LOCAL_CERTIFICATE := platform

Ying Wang's avatar
Ying Wang committed
14
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
15

16 17 18 19
include $(BUILD_PACKAGE)

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