-
Notifications
You must be signed in to change notification settings - Fork 30
[Enhancement]Allow calls to skip Recents #1008
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ipavlidakis
merged 4 commits into
develop
from
iliaspavlidakis/ios-1308-featureallow-calls-to-not-be-shown-in-recents
Dec 11, 2025
Merged
[Enhancement]Allow calls to skip Recents #1008
ipavlidakis
merged 4 commits into
develop
from
iliaspavlidakis/ios-1308-featureallow-calls-to-not-be-shown-in-recents
Dec 11, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Interface open class CallKitAdapter
- open var callSettings: CallSettings?
+ open var includesCallsInRecents: Bool
- public var availabilityPolicy: CallKitAvailabilityPolicy
+ open var callSettings: CallSettings?
- public var streamVideo: StreamVideo?
+ public var availabilityPolicy: CallKitAvailabilityPolicy
-
+ public var streamVideo: StreamVideo?
-
+
- public init()
+
-
+ public init()
-
+
- open func registerForIncomingCalls()
+
- open func unregisterForIncomingCalls()
+ open func registerForIncomingCalls()
+ open func unregisterForIncomingCalls()
open class CallKitService: NSObject, CXProviderDelegate, @unchecked Sendable
- open var missingPermissionPolicy: CallKitMissingPermissionPolicy
+ open var includesCallsInRecents: Bool
- open internal lazy var callController
+ open var missingPermissionPolicy: CallKitMissingPermissionPolicy
- open internal lazy var callProvider
+ open internal lazy var callController
-
+ open internal lazy var callProvider
-
+
- override public init()
+
-
+ override public init()
-
+
- open func reportIncomingCall(_ cid: String,localizedCallerName: String,callerId: String,hasVideo: Bool = false,completion: @Sendable @escaping (Error?) -> Void)
+
- open func callAccepted(_ response: CallAcceptedEvent)
+ open func reportIncomingCall(_ cid: String,localizedCallerName: String,callerId: String,hasVideo: Bool = false,completion: @Sendable @escaping (Error?) -> Void)
- open func callRejected(_ response: CallRejectedEvent)
+ open func callAccepted(_ response: CallAcceptedEvent)
- open func callEnded(_ cId: String,ringingTimedOut: Bool)
+ open func callRejected(_ response: CallRejectedEvent)
- open func callParticipantLeft(_ response: CallSessionParticipantLeftEvent)
+ open func callEnded(_ cId: String,ringingTimedOut: Bool)
- open func providerDidReset(_ provider: CXProvider)
+ open func callParticipantLeft(_ response: CallSessionParticipantLeftEvent)
- open func provider(_ provider: CXProvider,didActivate audioSession: AVAudioSession)
+ open func providerDidReset(_ provider: CXProvider)
- public func provider(_ provider: CXProvider,didDeactivate audioSession: AVAudioSession)
+ open func provider(_ provider: CXProvider,didActivate audioSession: AVAudioSession)
- open func provider(_ provider: CXProvider,perform action: CXAnswerCallAction)
+ public func provider(_ provider: CXProvider,didDeactivate audioSession: AVAudioSession)
- open func provider(_ provider: CXProvider,perform action: CXEndCallAction)
+ open func provider(_ provider: CXProvider,perform action: CXAnswerCallAction)
- open func provider(_ provider: CXProvider,perform action: CXSetMutedCallAction)
+ open func provider(_ provider: CXProvider,perform action: CXEndCallAction)
- open func requestTransaction(_ action: CXAction)async throws
+ open func provider(_ provider: CXProvider,perform action: CXSetMutedCallAction)
- open func checkIfCallWasHandled(callState: GetCallResponse)-> Bool
+ open func requestTransaction(_ action: CXAction)async throws
- open func setUpRingingTimer(for callState: GetCallResponse)
+ open func checkIfCallWasHandled(callState: GetCallResponse)-> Bool
- open func didUpdate(_ streamVideo: StreamVideo?)
+ open func setUpRingingTimer(for callState: GetCallResponse)
+ open func didUpdate(_ streamVideo: StreamVideo?) |
martinmitrevski
approved these changes
Dec 10, 2025
|
Collaborator
SDK Size
|
Collaborator
StreamVideo XCSize
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.



🔗 Issue Links
Resolves https://linear.app/stream/issue/IOS-1308/featureallow-calls-to-not-be-shown-in-recents
🎯 Goal
Allow CallKit calls to skip Recents.
☑️ Contributor Checklist