How to send videos as attachment in chat message Quickblox Android App? - quickblox

I have integrated Quickblox Android SDK into my app for chat module.
Images as an attachment is possible. But I can't find any working solution to make a video attachment file under the same request.
I have confirmed by reading a document from Quickblox which says - Video attachment possible under Quickblox chat SDK.
Do anyone has any working solution to make video file attachment with this?
Thanks in advance!

You just need a pass file it doesn't matter its image or video, like you're passing image file.
further process is same

Related

How to display an image in a expo local notification

To give more clarity on the issue, i am developing this for IOS using expo notifications and expo sdk44 in my current project.
I have a couple of questions which i failed to find the answer to in their official documentation.
Is it possible to display images in a local notification while using expo's expo-notification library?
Is it possible to send "data-only" messages to Apple devices using expo push notification service?
Thanks in advance
expo-notifications has limited features and not currently support a custom image in the notification.
In case you need a native-like notification experience, you should opt for https://notifee.app/.

Native way to inform user there is a mobile app?

Often when viewing a website on a mobile device you'll get a notification that a mobile app is available, or if you already have the app downloaded you'll have the option to open the URL in the app.
Is there a native way to do this or are these notifications always custom?
When users click on a link or download a file and the suggestion pops up to open the respective app, that's called deep linking. iOS labels it as Universal Links and Android uses App Links.

How to give download option in vimeo player in reactnative?

So I am designing an reactnative app where I need to embed vimeo video player.
Can I give my users an option to download the video for offline mode ?
How can I restrict the downloaded file in app itself like netflix does?
Is that possible? PLease guide.

QuickBlox Android to iPhone This Video Cannot be Played

I'm using QuickBlox in our chat app. There is a video share feature. When a vidoe file is receieved from Iphone to Android phone via quickblox and opens the file, it gives the error, sorry this video cannot be played. The issue persist when file is received from Android to iPhone too. But it works fine between Iphone to iPhone and Android Phone and Android Phone.
Any Fix?
This is not related to QuickBlox SDK,
This is the issue with Video file format
You should play with video files format and find a one which works on both

How to send image using gcm in android?

I am working on a project which will implement chat feature. I am using GCM to send message and working fine. But i want to send image just like facebook chat. After searching google i found that we can send image by encoding the image into base64 string. But the message size of gcm is up to 4kb so i can not send image like that. Here i need to upload the image into server and then needs to send the user a link and fetch the image from that link. But i think this will be a slow process . What can i do know?
I am sending message to others directly from my device using gcm. Please help me. I already found AirBop. But is there any other solution to send image?
you have to upload the image without GCM, On your server you have to had application that read the file from your device (Via Socket), and return the URL of the saved image, then the device send a link via gcm (as text) the partner gets the link and download the image.