From: Nibha Sharma Date: Wed, 23 Sep 2020 06:39:08 +0000 (+0530) Subject: [TBT][Push][NonACR][TSIX-6526, Message functionality removed as per devloper suggestion] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F73%2F244673%2F1;p=test%2Ftct%2Fnative%2Fbehavior.git [TBT][Push][NonACR][TSIX-6526, Message functionality removed as per devloper suggestion] Change-Id: I9c5ccfa2821f34035b13c7aec95b10b7569405b4 Signed-off-by: Nibha Sharma --- diff --git a/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk b/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk index 8871934..778d95e 100755 Binary files a/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk and b/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk differ diff --git a/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk b/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk index 2f4e013..c2b10a5 100755 Binary files a/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk and b/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk differ diff --git a/tbtcoreapp/src/model/tbt-list.c b/tbtcoreapp/src/model/tbt-list.c index 4dffbd6..0e9c713 100755 --- a/tbtcoreapp/src/model/tbt-list.c +++ b/tbtcoreapp/src/model/tbt-list.c @@ -1785,8 +1785,7 @@ static tbt_info tbtapps[] = "9. Press Active button and immediately press home button to move app to pause state, a Active push notification will be shown in Notification panel.
" "10. Press Template button and immediately press home button to move app to pause state, a push notification with custom icon and sound will be shown in Notification panel.
" "11. When new push notification will come a increasing badge number will be shown on app icon.
" - "12. If app is open and pressed Message button will show the message it is not read.
" - "13. Press button Disconnect to Disconnect Push Service.", + "12. Press button Disconnect to Disconnect Push Service.", .result = 0, .required_features_count = 1, .features_required = {FEATURE_NETWORK_PUSH} diff --git a/tbtcoreapp/src/view/tbt-push-view.c b/tbtcoreapp/src/view/tbt-push-view.c index 390e83e..2f0f206 100644 --- a/tbtcoreapp/src/view/tbt-push-view.c +++ b/tbtcoreapp/src/view/tbt-push-view.c @@ -252,10 +252,10 @@ static Evas_Object *add_control_layout(push_view *this, Evas_Object *parent) elm_table_padding_set(table, 0, 0); this->start_btn = ui_utils_push_button_add(this, table, "Start", _control_button_push_service_start_pressed_cb); - elm_table_pack(table, this->start_btn, 0, 0, 1, 1); + elm_table_pack(table, this->start_btn, 0, 0, 2, 1); - this->message_btn = ui_utils_push_button_add(this, table, "Message", _control_button_push_service_get_message_pressed_cb); - elm_table_pack(table, this->message_btn, 1, 0, 2, 1); + //this->message_btn = ui_utils_push_button_add(this, table, "Message", _control_button_push_service_get_message_pressed_cb); + //elm_table_pack(table, this->message_btn, 1, 0, 2, 1); this->disconnect_btn = ui_utils_push_button_add(this, table, "Disconnect", _control_button_push_service_disconnect_pressed_cb);