diff --git a/jni/Android.mk b/jni/Android.mk index f024c1ed9..db618e930 100755 --- a/jni/Android.mk +++ b/jni/Android.mk @@ -41,11 +41,9 @@ ifeq ($(BUILD_UPNP),1) include $(linphone-root-dir)/submodules/externals/build/libupnp/Android.mk endif -#libxml2 + xml2lpc + lpc2xml +#libxml2 ifeq ($(BUILD_REMOTE_PROVISIONING),1) include $(linphone-root-dir)/submodules/externals/build/libxml2/Android.mk -#include $(linphone-root-dir)/submodules/linphone/build/android/xml2lpc.mk -include $(linphone-root-dir)/submodules/linphone/build/android/lpc2xml.mk endif # Speex diff --git a/jni/Application.mk b/jni/Application.mk index b7949d095..257dc0872 100644 --- a/jni/Application.mk +++ b/jni/Application.mk @@ -13,7 +13,7 @@ endif #remote provisioning ifeq ($(BUILD_REMOTE_PROVISIONING),1) -APP_MODULES += libxml2 +APP_MODULES += liblpxml2 endif #default values diff --git a/res/drawable-xhdpi/chat_default.png b/res/drawable-xhdpi/chat_default.png index e9c671361..bcd5e9621 100644 Binary files a/res/drawable-xhdpi/chat_default.png and b/res/drawable-xhdpi/chat_default.png differ diff --git a/res/drawable-xhdpi/chat_over.png b/res/drawable-xhdpi/chat_over.png index 415b33a84..08bbb3345 100644 Binary files a/res/drawable-xhdpi/chat_over.png and b/res/drawable-xhdpi/chat_over.png differ diff --git a/res/drawable-xhdpi/chat_selected.png b/res/drawable-xhdpi/chat_selected.png index a7fff16a8..9b1eed184 100644 Binary files a/res/drawable-xhdpi/chat_selected.png and b/res/drawable-xhdpi/chat_selected.png differ diff --git a/res/drawable-xhdpi/contacts_default.png b/res/drawable-xhdpi/contacts_default.png index fb2146a91..a6d96b10d 100644 Binary files a/res/drawable-xhdpi/contacts_default.png and b/res/drawable-xhdpi/contacts_default.png differ diff --git a/res/drawable-xhdpi/contacts_over.png b/res/drawable-xhdpi/contacts_over.png index 7e0f661ba..e6a8994ff 100644 Binary files a/res/drawable-xhdpi/contacts_over.png and b/res/drawable-xhdpi/contacts_over.png differ diff --git a/res/drawable-xhdpi/contacts_selected.png b/res/drawable-xhdpi/contacts_selected.png index 04f579806..a304e6edb 100644 Binary files a/res/drawable-xhdpi/contacts_selected.png and b/res/drawable-xhdpi/contacts_selected.png differ diff --git a/res/drawable-xhdpi/dialer_default.png b/res/drawable-xhdpi/dialer_default.png index 2fc61b3af..6d1957b1a 100644 Binary files a/res/drawable-xhdpi/dialer_default.png and b/res/drawable-xhdpi/dialer_default.png differ diff --git a/res/drawable-xhdpi/dialer_over.png b/res/drawable-xhdpi/dialer_over.png index 7b718469f..13b5f34ab 100644 Binary files a/res/drawable-xhdpi/dialer_over.png and b/res/drawable-xhdpi/dialer_over.png differ diff --git a/res/drawable-xhdpi/dialer_selected.png b/res/drawable-xhdpi/dialer_selected.png index 80cd520f5..47b0c03b6 100644 Binary files a/res/drawable-xhdpi/dialer_selected.png and b/res/drawable-xhdpi/dialer_selected.png differ diff --git a/res/drawable-xhdpi/history_default.png b/res/drawable-xhdpi/history_default.png index 92a298d2f..0442b1472 100644 Binary files a/res/drawable-xhdpi/history_default.png and b/res/drawable-xhdpi/history_default.png differ diff --git a/res/drawable-xhdpi/history_over.png b/res/drawable-xhdpi/history_over.png index 1d2ddf91c..f2f973f84 100644 Binary files a/res/drawable-xhdpi/history_over.png and b/res/drawable-xhdpi/history_over.png differ diff --git a/res/drawable-xhdpi/history_selected.png b/res/drawable-xhdpi/history_selected.png index bf1a0867c..dd14c83dc 100644 Binary files a/res/drawable-xhdpi/history_selected.png and b/res/drawable-xhdpi/history_selected.png differ diff --git a/res/drawable-xhdpi/mark.png b/res/drawable-xhdpi/mark.png index 38aa8a2c5..1d6bf7550 100644 Binary files a/res/drawable-xhdpi/mark.png and b/res/drawable-xhdpi/mark.png differ diff --git a/res/drawable-xhdpi/settings_default.png b/res/drawable-xhdpi/settings_default.png index 8acb31e7c..97b0ba031 100644 Binary files a/res/drawable-xhdpi/settings_default.png and b/res/drawable-xhdpi/settings_default.png differ diff --git a/res/drawable-xhdpi/settings_over.png b/res/drawable-xhdpi/settings_over.png index c73168440..0cabe2002 100644 Binary files a/res/drawable-xhdpi/settings_over.png and b/res/drawable-xhdpi/settings_over.png differ diff --git a/res/drawable-xhdpi/settings_selected.png b/res/drawable-xhdpi/settings_selected.png index 6070b2c09..790153366 100644 Binary files a/res/drawable-xhdpi/settings_selected.png and b/res/drawable-xhdpi/settings_selected.png differ diff --git a/res/layout/main.xml b/res/layout/main.xml index 5d2482705..7767b807e 100644 --- a/res/layout/main.xml +++ b/res/layout/main.xml @@ -118,11 +118,11 @@ diff --git a/res/layout/menu_chat_button.xml b/res/layout/menu_chat_button.xml index 135cd8c14..52d67795e 100644 --- a/res/layout/menu_chat_button.xml +++ b/res/layout/menu_chat_button.xml @@ -2,7 +2,7 @@ 0) { - id = chatStorage.saveMessage(from.asStringUriOnly(), "", textMessage); + id = chatStorage.saveMessage(from.asStringUriOnly(), "", textMessage, message.getTime()); notificationText = textMessage; } else if (url != null && url.length() > 0) { Bitmap bm = ChatFragment.downloadImage(url); - id = chatStorage.saveMessage(from.asStringUriOnly(), "", bm); + id = chatStorage.saveMessage(from.asStringUriOnly(), "", bm, message.getTime()); notificationText = url; } diff --git a/submodules/belle-sip b/submodules/belle-sip index 8bd2630b9..414af68e2 160000 --- a/submodules/belle-sip +++ b/submodules/belle-sip @@ -1 +1 @@ -Subproject commit 8bd2630b93b31f0a38fcfc37a5ccd2cb1d2147c2 +Subproject commit 414af68e2f21ac741b123751c0e1f5ba45354b14 diff --git a/submodules/externals/build/libxml2/Android.mk b/submodules/externals/build/libxml2/Android.mk index a72bd3b0e..ba827c011 100644 --- a/submodules/externals/build/libxml2/Android.mk +++ b/submodules/externals/build/libxml2/Android.mk @@ -53,17 +53,12 @@ common_C_INCLUDES += \ $(LOCAL_PATH)/include \ $(LOCAL_PATH)/../build/libxml2 \ -# For the device -# ===================================================== - -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := $(common_SRC_FILES) LOCAL_C_INCLUDES += $(common_C_INCLUDES) -LOCAL_SHARED_LIBRARIES += $(common_SHARED_LIBRARIES) #LOCAL_CFLAGS += -fvisibility=hidden -LOCAL_MODULE:= libxml2 +LOCAL_SRC_FILES := $(common_SRC_FILES) + +LOCAL_MODULE:= liblpxml2 include $(BUILD_STATIC_LIBRARY) diff --git a/submodules/linphone b/submodules/linphone index 4a395bfb7..0e9b41562 160000 --- a/submodules/linphone +++ b/submodules/linphone @@ -1 +1 @@ -Subproject commit 4a395bfb7280d1c8344e80f76876d2b9275c0fe5 +Subproject commit 0e9b41562fe6c6f3629be3a3c61d12a2ab07e11e