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
0
votes
1 answer

QuickBlox - How to send data during video call?

Is there any way to send some data to opponent during live video call? We have a requirement to send configuration data to opponent based user's action on video call screen. Or is it something like that we need to open chat session between user's in…
M P
  • 352
  • 3
  • 14
0
votes
2 answers

How to identify opponent user enable or disable video in quickblox ios

How to identify opponent user enable or disable video in Quickblox SDK. Please give the solution or delegate methods
0
votes
1 answer

Quickblox frequent crash in Android

I have been working with Quickblox SDK for past few weeks and have developed applications with features of one-to-one, group chat as well as WebRTC too. I am using 3.0 version of the SDK due to some of my requirements and I will not be able to…
Nir Patel
  • 357
  • 4
  • 17
0
votes
1 answer

QuickBlox sometimes gives unauthorized error while signing in.Why?

I hope you are all fine.I am using quickblox sample video chat app in android application .It works perfectly.But the problem is that sometimes when I try to login in my app or sign in then it gives unauthorized error,and then I refresh my android…
0
votes
1 answer

Video call "onReceiveNewSession" doesn't call QuickBlox- android

I have tried to make a video call with quickblox but it doesn't work, I start the call but on the other device onReceiveNewSession doesn't call. and this is my code:- This activity to start the call:- package…
Momen Zaqout
  • 1,508
  • 1
  • 16
  • 17
0
votes
0 answers

quickblox.my prob:cant load chat history just show last message

not load chat history Please help I need to solve it so much. Try by this code for save chat may be this I am not sure: private void retrievemessage() { QBMessageGetBuilder messageGetBuilder = new QBMessageGetBuilder(); …
dornadev
  • 1
  • 1
  • 8
0
votes
1 answer

Migrating from Starter to Enterprise(Small)

I have developed an enterprise level chatting app on android platform which is live now to users,by using quickblox SDK 2.5.2 in starter tier. I am planning to upgrade to dedicated instance of quickblox (Small). Please let me know the setup…
0
votes
0 answers

Failed to resolve dependencies from parent project Android Studio

I have the following problem I have a project1 that use quickblox sdk as following dependencies { compile "com.quickblox:quickblox-android-sdk-messages:3.3.1@aar" compile "com.quickblox:quickblox-android-sdk-content:3.3.1@aar" compile…
0
votes
1 answer

cannot resolve method 'performAsync' in quickblox

I have updated my QuickBlox Android SDK from 2.5.2 to 3.3.0 (partial) chat , content sdk from 2.5.2 to 3.3.0 I have done following changes 1. In app build.gridle file compile "com.quickblox:quickblox-android-sdk-chat:3.3.0" compile…
Pallavi
  • 652
  • 1
  • 10
  • 26
0
votes
1 answer

com.quickblox.core.exception.QBResponseException: Occupants with these IDs do not exist

QuickBlox Chat was working fine from last 6 months but now from last 4 to 5 days I am getting this error com.quickblox.core.exception.QBResponseException: Occupants with these IDs do not exist. while creating a private chat dialog. Occupant id is…
Kapil Rajput
  • 11,429
  • 9
  • 50
  • 65
0
votes
1 answer

Quickblox android QBCustomObjects.deleteObjects is not working

I'm using Quickblox sdk 3.3.0 There is something wrong with sdk or i'm using it in wrong way? int count = QBCustomObjects.countObjects("tbl_taxi_gps", req).perform(); if (count > 30) { req = new…
Alireza Sharifi
  • 1,127
  • 1
  • 9
  • 18
0
votes
1 answer

Android Studio: RecyclerView not displaying data

I am currently making an Android application with a feed, so I can display a little blog using custom data from QuickBlox. I was wanting each record to appear in a CardView with a picture and a title underneath it, then when the user taps the card,…
0
votes
1 answer

Android QuickBlox call

I'm trying to integrate QuickBlox for audio and video calls. I followed tutorial but it doesn't work. To enable an ability of receiving incoming WebRTC calls need add signalling manager but method public void signalingCreated(QBSignaling…
Neo Phone
  • 1
  • 1
0
votes
1 answer

How to remove quickblox account user name from user list?

Basically I am retrieving QBUser list from quickblox server and I don't want Admin(application registered - account owner) name to be listed as QBUser. Example : I signup quickblox with name "A" to register "xyz" application. Afterwards I add…
buzzingsilently
  • 1,546
  • 3
  • 12
  • 18
0
votes
1 answer

Is this correct way of including Quickblox SDK into to my existing android project?

I want to embed chat feature in my already existing Android App. It already includes Login Credentials. So, I tried to add the Quickblox SDK into my existing android project which was downloaded from GitHub Link GitHub Also, Is Q-municate Android…