1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_JAVA_LIBRARIES := bouncycastle telephony-common 5LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4 android-support-v13 jsr305 6 7LOCAL_MODULE_TAGS := optional 8 9LOCAL_SRC_FILES := $(call all-java-files-under, src) 10 11LOCAL_PACKAGE_NAME := Settings 12LOCAL_CERTIFICATE := platform 13 14LOCAL_PROGUARD_FLAG_FILES := proguard.flags 15 16LOCAL_AAPT_FLAGS += -c zz_ZZ 17 18include $(BUILD_PACKAGE) 19 20# Use the folloing include to make our test apk. 21include $(call all-makefiles-under,$(LOCAL_PATH)) 22