* #40033: Add android makefiles
diff --git a/jni/libpjsip/android_toolchain/pjsip/Android.mk b/jni/libpjsip/android_toolchain/pjsip/Android.mk
new file mode 100644
index 0000000..3e814e5
--- /dev/null
+++ b/jni/libpjsip/android_toolchain/pjsip/Android.mk
@@ -0,0 +1,71 @@
+#########
+# PJSIP #
+#########
+include $(CLEAR_VARS)
+LOCAL_MODULE    := pjsip
+
+PJSIP_DIR = libpjsip/sources/pjsip
+
+LOCAL_C_INCLUDES := $(PJSIP_DIR)/include \
+					$(PJSIP_DIR)/../pjlib/include \
+					$(PJSIP_DIR)/../pjlib-util/include \
+					$(PJSIP_DIR)/../pjnath/include \
+					$(PJSIP_DIR)/../pjmedia/include
+
+
+LOCAL_CFLAGS := $(MY_PJSIP_FLAGS)
+
+
+PJSIP_SRC_DIR := $(PJSIP_DIR)/src/pjsip
+PJSIPSIMPLE_SRC_DIR := $(PJSIP_DIR)/src/pjsip-simple
+PJSIPUA_SRC_DIR := $(PJSIP_DIR)/src/pjsip-ua
+
+LOCAL_SRC_FILES := $(PJSIP_SRC_DIR)/sip_config.c \
+					$(PJSIP_SRC_DIR)/sip_multipart.c \
+					$(PJSIP_SRC_DIR)/sip_errno.c \
+					$(PJSIP_SRC_DIR)/sip_msg.c \
+					$(PJSIP_SRC_DIR)/sip_parser.c \
+					$(PJSIP_SRC_DIR)/sip_tel_uri.c \
+					$(PJSIP_SRC_DIR)/sip_uri.c \
+					$(PJSIP_SRC_DIR)/sip_endpoint.c \
+					$(PJSIP_SRC_DIR)/sip_util.c \
+					$(PJSIP_SRC_DIR)/sip_util_proxy.c \
+					$(PJSIP_SRC_DIR)/sip_resolve.c \
+					$(PJSIP_SRC_DIR)/sip_transport.c \
+					$(PJSIP_SRC_DIR)/sip_transport_loop.c \
+					$(PJSIP_SRC_DIR)/sip_transport_udp.c \
+					$(PJSIP_SRC_DIR)/sip_transport_tcp.c \
+					$(PJSIP_SRC_DIR)/sip_auth_aka.c \
+					$(PJSIP_SRC_DIR)/sip_auth_client.c \
+					$(PJSIP_SRC_DIR)/sip_auth_msg.c \
+					$(PJSIP_SRC_DIR)/sip_auth_parser.c \
+					$(PJSIP_SRC_DIR)/sip_auth_server.c \
+					$(PJSIP_SRC_DIR)/sip_transaction.c \
+					$(PJSIP_SRC_DIR)/sip_util_statefull.c \
+					$(PJSIP_SRC_DIR)/sip_dialog.c \
+					$(PJSIP_SRC_DIR)/sip_ua_layer.c \
+					$(PJSIPUA_SRC_DIR)/sip_inv.c \
+					$(PJSIPUA_SRC_DIR)/sip_reg.c \
+					$(PJSIPUA_SRC_DIR)/sip_replaces.c \
+					$(PJSIPUA_SRC_DIR)/sip_xfer.c \
+					$(PJSIPUA_SRC_DIR)/sip_100rel.c \
+					$(PJSIPUA_SRC_DIR)/sip_timer.c \
+					$(PJSIPSIMPLE_SRC_DIR)/errno.c \
+					$(PJSIPSIMPLE_SRC_DIR)/evsub.c \
+					$(PJSIPSIMPLE_SRC_DIR)/evsub_msg.c \
+					$(PJSIPSIMPLE_SRC_DIR)/iscomposing.c \
+					$(PJSIPSIMPLE_SRC_DIR)/mwi.c \
+					$(PJSIPSIMPLE_SRC_DIR)/pidf.c \
+					$(PJSIPSIMPLE_SRC_DIR)/presence.c \
+					$(PJSIPSIMPLE_SRC_DIR)/presence_body.c \
+					$(PJSIPSIMPLE_SRC_DIR)/publishc.c \
+					$(PJSIPSIMPLE_SRC_DIR)/rpid.c \
+					$(PJSIPSIMPLE_SRC_DIR)/xpidf.c
+
+ifeq ($(MY_USE_TLS),1)
+LOCAL_SRC_FILES += $(PJSIP_SRC_DIR)/sip_transport_tls.c
+LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../../openssl/sources/include
+endif
+
+
+include $(BUILD_STATIC_LIBRARY)
\ No newline at end of file