Questions tagged [quickblox-android]

Use this tag for questions related to quickblox on android platform. For generic quickblox question use `quickblox` tag.

QuickBlox is used for the backend for Q-municate which is an open source code of chat application with a wide range of communication features included (such as one-to-one messaging, group chat messaging, file transfer, push notifications, audio/video calls) Website : https://quickblox.com/developers/Q-municate#Q-municate

146 questions
2
votes
4 answers

This app is not authorized to use Firebase Authentication. Verify that the correct package name and SHA-1 are configured in the Firebase Console

I have attached firebase on my modified Q-Municate app which is open source on Github of android project and ran it. Here is the scenario: If the app ran from android studio via developer mode, it(Firebase sign in via phone number) runs smoothly and…
2
votes
0 answers

Quickblox sample chat Android privacy settings (block or unblock)

in quickblock sample chat, trying to add block and unblock for user 1-1 was unable to include ALL of the desired items .Only one user was adding to list always this is my code privacyListsManager =…
Bharat Kumar Emani
  • 3,436
  • 3
  • 16
  • 30
2
votes
2 answers

Roid Private chat issue

I am stuck creating a private create chat dialog. I am trying to create static private chat dialog for id 19. I am getting null object reference on PrivateChatManager public class ChattingFragment extends Fragment { public static final String…
2
votes
1 answer

Quickblox How to record call in android?

quickblox api working fine for calling.I want to record the call so there is any method for recording?
Mayank Sharma
  • 2,735
  • 21
  • 26
2
votes
0 answers

QBRTCStatsReportCallback interface is not getting in quickblox

I am integrating QuickBlox framework in my project. I have import all the files of WebRTC for video calling functionality but my problem is i am not getting QBRTCStatsReportCallback interface file in my project. This is my code:
2
votes
0 answers

Quickblox group chat message listener doesn't work

I have integrated my app with Quickblox and I registered the group chat global listener after session has created as follow. register GroupChatManagerListener after session created. if (groupChatManager != null) { …
Dara
  • 107
  • 1
  • 7
2
votes
0 answers

QuickBlox notifications not working for Android

I've been using QuickBlox sample-pushnotifications (link) and it's not working - both with test data from sample and mine. Steps are following: Setup keys in Application createSession with user credentials createSubscription (I added this by myself…
2
votes
1 answer

Quickblox One-to-one Video Call

i am trying to implement one to one video call in the but its not showing local or remote videos i had tried example given by quickblox but it confusing a lot please help me out friends if anybody having an example of one-one video please share with…
niranjan niru
  • 43
  • 1
  • 8
2
votes
0 answers

Receive callback about new incoming messages in QuickBlox

I'm using QuickBlox and I want to receive a callback about new incoming messages for all dialogs. How can I do this without adding all private and group chat message-listeners?
Svirin
  • 564
  • 1
  • 7
  • 20
2
votes
2 answers

How to get all dialog messages in QuickBlox

I am using Quickblox and trying to get all dialog messages, but the number of messages in response are limited (100 by default according to documentation). How can I get All dialog messages from the server without a limit?
Svirin
  • 564
  • 1
  • 7
  • 20
2
votes
2 answers

How to reduce size of apk after including QuickBlox video chat "so" driver files

We have developed an Android application that leverages QuickBlox for implementing a Video Conference solution. However, issue is that the the driver files add an additional 15MB to the apk size which is highly undesirable. Is there a way to reduce…
Ranjan
  • 858
  • 2
  • 10
  • 17
2
votes
1 answer

How to know opponent's platform in quickblox app?

I m integrating quickblox to my app. (iOS & android). I need to know opponent's platform when making call between each other. Is there any solution?
gstream
  • 525
  • 6
  • 18
2
votes
0 answers

onBindViewHolder is not called when I am adding Item in RecyclerView

I am doing chat application. I am using Recyclerview to show the chat to users. If I add a new item to the Recyclerview I am facing two issues. First one is onBindViewHolder is not working second one is scrollToPosition is not working. Sometimes…
MathankumarK
  • 2,717
  • 1
  • 17
  • 34
2
votes
1 answer

Not getting Users list info from quickblox example

final ListView opponentsList = (ListView) view.findViewById(R.id.opponentsList); ArrayList userIds = new ArrayList<>(); QBUsers.getUsersByIDs(userIds, new QBPagedRequestBuilder(userIds.size(), 1), new…
Azhar osws
  • 188
  • 1
  • 8
2
votes
1 answer

How to clear quickblox unread message count in chat server?

I am building a chat app with quickblox SDK, and want to clear the unread message count in the chat dialogs(list items in group chat) when the user clicks and views the messages inside the group.For this I found this piece of code, public void…
Learner_Programmer
  • 1,259
  • 1
  • 13
  • 38
1
2
3
9 10