I have implemented Call Directory Extension in my app to identify called id. But not able to view my apps name or caller detail, when a call is received. Not able to debug Call Directory Extension, sue to security reasons by Apple. Have included my code below.
override func beginRequest (with context: CXCallDirectoryExtensionContext) {
// --- 1
guard let phoneNumbersToBlock = retrievePhoneNumbersToBlock () else {
NSLog ( "Unable to retrieve phone numbers to block" )
let error = NSError (domain: "CallDirectoryHandler" , code: 1 , userInfo: nil )
context.cancelRequest (withError: error)
return
}
// --- 2
for phoneNumber in phoneNumbersToBlock {
let phoneNumberr : CXCallDirectoryPhoneNumber = CXCallDirectoryPhoneNumber(phoneNumber)!
context.addBlockingEntry (withNextSequentialPhoneNumber: phoneNumberr)
}
// --- 3
guard let (phoneNumbersToIdentify, phoneNumberIdentificationLabels) = retrievePhoneNumbersToIdentifyAndLabels () else {
NSLog ( "Unable to retrieve phone numbers to identify and their labels" )
let error = NSError (domain: "CallDirectoryHandler" , code: 2 , userInfo: nil )
context.cancelRequest (withError: error)
return
}
// --- 4
for (phoneNumber, label) in zip (phoneNumbersToIdentify, phoneNumberIdentificationLabels) {
let phoneNumberrr : CXCallDirectoryPhoneNumber = CXCallDirectoryPhoneNumber(phoneNumber)!
context.addIdentificationEntry (withNextSequentialPhoneNumber: phoneNumberrr, label: label)
}
// --- 5
context.completeRequest ()
}
private func retrievePhoneNumbersToBlock () -> [ String ]? {
// retrieve list of phone numbers to block
return [ "+ 919488775260" ]
}
private func retrievePhoneNumbersToIdentifyAndLabels () -> (phoneNumbers: [ String ], labels: [ String ])? {
// retrieve list of phone numbers to identify, and their labels
return ([ "+ 919385338505" ], [ "test" ])
}
Should any configuration be enabled, which i might have missed out. Please help me.
I found the solution. Basically debugging Call directory extension is not possible, due to security reasons by Apple. But you can test it through reload function in app. Please find the code below.
Use the above code in app delegate to test if your call directory extension is working.
In "CallDirectoryHandler",beginRequest method should as below.
Please check if context is isIncremental, else the code will not work.