Is there any way to implement video call in ionic 6? if I start the video call, the App will automatic open even if there is a background or foreground. I implement jitsi video call but I can't open it when the app is in the background. or can I open the app using VoIP Notifications in ionic 6 and if I use webtrc then it is possible, actually I want it will work like skype. please help. Thanks in advance for your help.
There is a plugin cordova-call I found, I implemented it, and it works background and foreground quite well
Related
I am working on an ionic 5 application in which it is possible to make video calls.
the call works well, but I can't find a good library/api to implement VoIP notifications.
please do you have something to recommend me?
I need to write an application with video chats (1:1), and i know Angular. There are tons of SDKs for Angular(or web) to handle video calls(like e.g. twilio.com, agora.io?). But my client need mobile app. It's possible to write native app in Ionic with video calls support? However, do I have to use something more professional like flutter to achieve this?
Is there any ready SDK to handle this in Ionic?
I am looking, I am looking for and I cannot find anything. And I have to make quick decisions in part.
Please help me :)
Yes.
You can use the camera and the microphone with Ionic (in native or pwa mode).
Ionic fully supports Angular and Angular components.
I recommend you the use of notifications like Google FCM to notify the caller.
You can trigger an action directly from the notification (app in background or in app which is not the same).
I'm trying to develop an app that prevents a user from starting other application when my app is running. The scenario:
my app starts the timer
app detects launch of another app (could be anything other than my app)
if it detects, it cancels some achievements
Can anyone help? I saw some solutions on this topic, but could not find anything in Flutter.
Any ideas would help.
Thank you.
There is a few ways to do that but easy one to observe your app situation, you can use WidgetsBindingObserver to detect your app is background or not.
But if the case is not being background it is just depending to launch an app so there is a few ways which suggest in this answer you can try them.
I am using agora.io to create a calling app. It's possible to talk when the app starts, but once you close the app the call will end. With Facebook Messenger, Skype, and whatsAPPp, you can use other apps while keeping a call. What should I use to keep the app running in the background like this?
It happens because when you close your app, iOS framework terminates the app process. to continue call with app in background you need to integrate some background service in app.
You can refer this answer.
It's because,the ios terminates process of the app.you can call with app in background you have to change some settings
I am working on an iphone app which needs to pop up a notification when the user reaches some particular place. I am developing the app in phonegap. A function is available in phonegap to track gps location continuously i.e. "geolocation.watchPosition", but I want to know: will the function keep on tracking the location even if the app is not running(exited state)?
I recently came to know that for the desired functionality I have to create a phonegap plug in and embed it to the project. This worked for me.
you can do it if your app is runing in background but its not possible if the user stops the applicationcheck this post Is it possible to run a background process on the iPhone using private APIs?