1# Copyright 2007-2011 The Android Open Source Project 2 3LOCAL_PATH:= $(call my-dir) 4include $(CLEAR_VARS) 5 6LOCAL_MODULE_TAGS := optional 7 8LOCAL_JAVA_LIBRARIES := telephony-common 9LOCAL_SRC_FILES := $(call all-java-files-under, src) 10 11LOCAL_PACKAGE_NAME := BasicSmsReceiver 12 13# Builds against the public SDK 14#LOCAL_SDK_VERSION := current 15 16LOCAL_PROGUARD_FLAG_FILES := proguard.flags 17 18include $(BUILD_PACKAGE) 19 20# This finds and builds the test apk as well, so a single make does both. 21include $(call all-makefiles-under,$(LOCAL_PATH)) 22