How to record a phone call programmatically? - blackberry

I want to record the phone call programmatically.
I have get the help from this Link
but this code will save the multiple audio files.

You cannot record phone calls in blackberry. There is no api to do this. You can probably record if the call is put into loudspeaker as its given in the link provided by you.

Related

How to show background image on CallKit

I want to show the background image on Call kit when a call is coming.I have searched a lot but not find any solution.And also I want to open the app when the phone is locked.Please help me
Thanks in Advance.
If your app has requested and been granted access to the user's Contacts database, it can modify the Contacts database to add a photo to any entry. So although there is no API to directly supply an image to be shown for a CallKit call, you may be able to modify or create a Contact database entry for a given caller before notifying the system of the incoming call via the -reportNewIncomingCallWithUUID:update:reply: API, and then that Contact entry's photo will be shown.

How to show caller image on iOS native ui call by using callkit framework?

In my iOS app, I am using CallKit and PushKit for VOIP Call. By using CallKit, I am able to show native call ui and everything fine but I need show native call UI with caller image. How to do this?
Image1 without caller image at receiver side "my app currently behave like this"
Image2 with caller image at receiver side "I want like this in my app"
A photo will be shown on the native incoming call UI if the user's Contacts database contains a Contact record matching the CXHandle specified for the incoming call via a CXCallUpdate, assuming that Contact record contains a photo.
To test this, you should be able to create a Contact card with a photo and a specific handle (e.g. a phone number or email address), then trigger an incoming call from that handle and ensure your app reports a CXCallUpdate with the remoteHandle property set to the CXHandle matching the one on the Contact card.
After trying couple of other things final got the conclusion that you must a hig res image if you want to cover background image of caller.
Initially I was using 500*600 image which was showing as thumbnail then I tried with an image 1242*1863 and it's simply work.
Let me know in case anyone need help in this. Thanks

Is it possible to send an SMS message from an iOS app to the current caller when a call is in progress?

I have searched and have not been able to find a definitive answer. I know that it is not possible to get the phone number of the current caller using Objective-C, but I don't need the number.
I want to send a text message to the current caller. Does iOS have a method to allow you to send a text message from an app to the current caller.
The scenario is this:
End user calls another user
They put the person they called on speaker phone and navigate to my app
The app has a button that allows them to share information via SMS to the person they are talking to while they are talking to them without having to do anything more than click a button (the user doesn't have to type the other person's phone number manually to send the SMS).
Sukhdeep is correct.iOS will never allow you to perform Messaging without user involvement.
The answer is No.
Apple will never allow you this.

Hyperlink to call a number from an HTML5 app for iOS

How to add a hyperlink in an HTML5 application, so I can call a specific number with 3cx application for iPhone?
Try this it should work
Phone Call
Actually html link is same for all calls, how You call to it is depends on phone settings.

iOS Programing, making phone calls

Is it possible to make a call from my app without accessing the standart phone application?
The problem is that if I make a call, my app goes to the background, and I really do not need that. I need it to be always active even if I am calling.
No there is no way to do that, you can only make calls via de tel URL sheme.
You can use tel://123456789, but this will display a confirmation before opening the phone app.
There are a few apps, however, that open the phone app and make a call directly without displaying a confirmation (like Dialvetica).
To answer your question, no, you can not make calls directly from your app, unless you create your own version of Skype (the whole network, not just the app), and you probably don't have the time, money and resources to do that.

Resources