Is it possible to add a video call feature on an app using Smartface App Studio? - smartface.io

Is it possible to add a video call feature on an app using Smartface App Studio?
I've tried cloning Viber using another software however it wasn't successful
Thankyou

Short answer: No;
Long answer: Maybe
Smartface doesn't have direct support for SIP/VoIP. For video you could use Sockets (however the problem still remains on video encoding).
However, to implement a video call feature I would recommend to do this using the native platform SDKs

Related

is it possible to make an application for video calls in Ionic?

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).

How to cast screen from flutter application?

I am working on flutter app where I playing live videos. Now I want to cast my device screen using Roku, FireTv, Chromecast and Airplay. I want to know is it possible cast screen using these technologies? I used cast dart package to discover and connect with chromecast devices but not able to scan any device. Please help me how it working with flutter?
Thanks Advance.
i dont know whether it is working or not. just catch this url from internet. try this
https://morioh.com/p/fbd0079a2d71
and another example i got. i didn't check this also
https://github.com/terrabythia/flutter_chromecast_example
We were able to make it work on Chromecast, see my answer posted here:
How to play YouTube videos in google chromecast from Flutter application?
As for Airplay, if you use updated Apple libraries, Airplay will be integrated natively into your app. We were able to cast our app to Airplay without having to add extra code.
FireTV uses airplay so that should work.
We have not found a Roku solution yet.

How to check if NFC available for iOS using ionic?

I wanted to know is it possible to check using ionic if iOS device has NFC functionality. I can use "PhoneGap NFC Plugin" but it only has nfc.beginSession() function which isn't what I need because it opens NFC reading window for iOS but I just want to check if available without opening any windows. I know that you can call in swift NFCNDEFReaderSession.readingAvailable() but is there a plugin which offers what I need?
The enabled() method of the phonegap-nfc plugin seems to do exactly what you want on iOS: it internally calls NFCNDEFReaderSession.readingAvailable().

Flash Equivalent for iPhone

Anyone know of any flash equivalent software for the iPhone. Need to do some simple masking, animation...
As others have said, you can use AIR, but I'm guessing you want this to run in the browser, not as some native app. That is, you want something you can put on a web page, not distribute as an application through the App Store.
If that is the case, try Wallaby: http://labs.adobe.com/technologies/wallaby/
Wallaby can export certain Flash features to HTML5, which can be rendered in mobile Safari.
Hope that helps.
Depending on your exact needs (eg. if you want to work with timeline animations) then using the iOS packager part of AIR is a good option. For most uses however I would consider the performance of Flash iOS apps to be sub-par.
A development tool that is fairly similar to Flash programming-wise is Corona SDK:
http://www.anscamobile.com/corona/
Checkout Adobe's AIR. Its a run time that runs on the iPhone. You write in their flash language and then same code can run on iOS and Android.

How to initiate/send SMS from a HTML5 webpage using devices native functions?

I am wondering how can I open the send SMS application by using a web control of a HTML5 page on Android and iPhone. I want to use the device native SMS sending app, with a prepopulated value from the web.
Further to other answers I can confirm that smsto:555:bodytext does not work on an iPhone running iOS5.
What does work (and I've tested it) on Android is the format:
sms:444?body=hello
Example:
Tap to say hello!
On iPhone the ?body=hello will prevent it working at all, and you should use just sms:555 instead.
sms:555
Example
Tap to text us!
I have tested the below and it works:
Using HTML Anchor tag:
Subscribe
Using JavaScript:
window.open('sms:111?body=SUBSCRIBE', '_self');
With Android 3.0 SDK Google has started exposing API in HTML5 for device access. An example is listed here. It may not be enough for what you seek to do.
I dont know enough about iphone to advise either way.