[TBT][Push][NonACR][TSIX-6526, Message functionality removed as per devloper suggestion] 73/244673/1
authorNibha Sharma <nibha.sharma@samsung.com>
Wed, 23 Sep 2020 06:39:08 +0000 (12:09 +0530)
committerNibha Sharma <nibha.sharma@samsung.com>
Wed, 23 Sep 2020 06:39:08 +0000 (12:09 +0530)
Change-Id: I9c5ccfa2821f34035b13c7aec95b10b7569405b4
Signed-off-by: Nibha Sharma <nibha.sharma@samsung.com>
release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk
release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk
tbtcoreapp/src/model/tbt-list.c
tbtcoreapp/src/view/tbt-push-view.c

index 887193491e881822875661e6a2276693f5c5a1b4..778d95e58e9e005566f74538f0b0191de36f8b5b 100755 (executable)
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
index 2f4e013611d5cc9b054f7e45f4498f73d52a53ba..c2b10a528e089bc4206e8c74e3e3893889abd31c 100755 (executable)
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
index 4dffbd6070a9f52e4ae39b6db66a77c98864bdfa..0e9c713f10676351831bd1601ec851a5934c2efc 100755 (executable)
@@ -1785,8 +1785,7 @@ static tbt_info tbtapps[] =
                                        "9. Press <b>Active</b> button and immediately press home button to move app to pause state, a Active push notification will be shown in Notification panel.<br/>"
                                        "10. Press <b>Template</b> 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.<br/>"
                                        "11. When new push notification will come a increasing badge number will be shown on app icon.<br/>"
-                                       "12. If app is open and pressed <b>Message</b> button will show the message it is not read.<br/>"
-                                       "13. Press button Disconnect to <b>Disconnect</b> Push Service.",
+                                       "12. Press button Disconnect to <b>Disconnect</b> Push Service.",
                        .result = 0,
                        .required_features_count = 1,
                        .features_required = {FEATURE_NETWORK_PUSH}
index 390e83eb33bbe66b259e1f2b3b539a2ad8e507cd..2f0f2063f008ea467ff5c70f6bb275da3adf1b0b 100644 (file)
@@ -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);