artemis

Results 38 comments of artemis

@tatveshwebmigrates So, the call history can be implemented by dint of notification messages as in Q-municate iOS. Please take a look at [this category](https://github.com/QuickBlox/q-municate-ios/blob/d43696b18c9c73fe22a64a81360c8d554e2734ba/Q-municate/Categories/QBChatMessage/QBChatMessage%2BQMCallNotifications.h) which can be used as an...

Hi, as states in [docs](https://quickblox.com/developers/Android_XMPP_Chat_Sample#Use_custom_parameters_in_a_message) you can use custom parameters for the messages you send in the chat: `chatMessage.setProperty("name", "Bob"); chatMessage.setProperty("age", "25");`

Our tester checked this case, and it is all ok. So, did you change anything in project, maybe even some small changes?

Hi, @FelipeMiranda, can you explain in more details your problem. You do not receive pushes on all devices or just on some? Did you make any changes in project?

In Qmun used logic with PROPERTY_NOTIFICATION_TYPE with FRIENDS_REQUEST value for chat message. Just look at [code](https://github.com/QuickBlox/q-municate-android/blob/370ae97aabb64f733c798169f161afc6ce091d1b/Q-municate_core/src/main/java/com/quickblox/q_municate_core/qb/helpers/QBFriendListHelper.java#L143-L143) and explore it.

@iman2420, yes, that's right! Now SignUpActivity is not used. You can sign up with phone number via twitterDigits. SignUpActivity is a sketch. If you want to use SignUpActivity in your...

@iman2420, in which request do you receive this response? Show us log with request and response.

Hi, subscriptionRequested() means some user received the request to be added to the contact list. For confirmation about subscription state there is QBRosterListener with entriesUpdated(), which called when a roster...

Just have a look at related to https://github.com/QuickBlox/q-municate-android/issues/267

Firstly, you can set autojoin settings in QBChatService to automatically join loaded or created on server dialogs: In that way you don't need to join chat dialog manually in code....