From 7a0e90ca79b8278d8ebc746b52f722bae4f7730d Mon Sep 17 00:00:00 2001 From: Rex Chiu Date: Fri, 29 Aug 2025 15:13:52 -0400 Subject: [PATCH] enable DTMF --- package.json | 2 +- plugin.xml | 2 +- src/ios/CordovaCall.m | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 0be5654..2ce10f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-callkit", - "version": "1.1.5", + "version": "1.1.6", "description": "Cordova plugin that lets you use iOS CallKit UI (with PushKit) and Android ConnectionService UI", "cordova": { "id": "cordova-plugin-callkit", diff --git a/plugin.xml b/plugin.xml index 848292c..6145505 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,5 +1,5 @@ - + Cordova CallKit diff --git a/src/ios/CordovaCall.m b/src/ios/CordovaCall.m index 4de2b65..a273609 100644 --- a/src/ios/CordovaCall.m +++ b/src/ios/CordovaCall.m @@ -16,7 +16,7 @@ @implementation CordovaCall NSMutableDictionary *callbackIds; NSDictionary* pendingCallFromRecents; BOOL monitorAudioRouteChange = NO; -BOOL enableDTMF = NO; +BOOL enableDTMF = YES; PKPushRegistry *_voipRegistry; NSString* callBackUrl;