-
Notifications
You must be signed in to change notification settings - Fork 46
feat(llc): migrated callkit incoming into stream_video_push_notification #1044
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
Open
Brazol
wants to merge
29
commits into
main
Choose a base branch
from
feat/remove-callkit-dependency
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 27 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
ddb180b
migrated callkit incoming into stream_video_push_notification
Brazol 0f497f8
fixes
Brazol 2adc280
android fixes
Brazol 6a3051f
renaming CallKit to IncomingCall for Android classes
Brazol 36041e9
Merge branch 'main' into feat/remove-callkit-dependency
Brazol 40149c9
android cleanup
Brazol d919f46
android missed call notification fixes
Brazol 364ca03
fix
Brazol 71917eb
renaming CallKit to Ringing
Brazol 8c32cdc
changelog
Brazol b5cb77a
changelog update
Brazol 723c399
tweaks
Brazol 3c06140
more tweaks
Brazol 3ca25ce
more tweaks and fixes
Brazol 6b0fe7e
more tweaks
Brazol 060533d
fix getPushToken method
Brazol d3f73ff
fix
Brazol f1af07f
Merge branch 'main' into feat/remove-callkit-dependency
Brazol 053b4f4
pana fixes
Brazol 8366acf
pana action fix
Brazol 63ae64a
pana fix
Brazol 21b1dc4
dart format
Brazol 9807b30
format dogfooding
Brazol 5621c10
coil version change
Brazol 0b60188
coil version fix
Brazol a8f8365
analyzer fixes
Brazol 0289138
pana workflow
Brazol de0475e
tweaks
Brazol 79661b9
test pana action
Brazol File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| # Docs on data driven fixes: https://github.com/flutter/flutter/blob/master/docs/contributing/Data-driven-Fixes.md | ||
|
|
||
| version: 1 | ||
| transforms: | ||
| - title: "replace CallKitEvent with RingingEvent" | ||
| date: "2025-08-28" | ||
| element: | ||
| uris: | ||
| [ | ||
| "package:stream_video/src/push_notification/push_notification_manager.dart", | ||
| "package:stream_video/stream_video.dart", | ||
| ] | ||
| typedef: "CallKitEvent" | ||
| changes: | ||
| - kind: "rename" | ||
| newName: "RingingEvent" | ||
|
|
||
Brazol marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - title: "replace observeCallDeclinedCallKitEvent with observeCallDeclinedRingingEvent" | ||
| date: "2025-08-28" | ||
| element: | ||
| uris: | ||
| [ | ||
| "package:stream_video/src/stream_video.dart", | ||
| "package:stream_video/stream_video.dart", | ||
| ] | ||
| inClass: "StreamVideo" | ||
| method: "observeCallDeclinedCallKitEvent" | ||
| changes: | ||
| - kind: "rename" | ||
| newName: "observeCallDeclinedRingingEvent" | ||
|
|
||
| - title: "replace onCallKitEvent with onRingingEvent" | ||
| date: "2025-08-28" | ||
| element: | ||
| uris: | ||
| [ | ||
| "package:stream_video/src/stream_video.dart", | ||
| "package:stream_video/stream_video.dart", | ||
| ] | ||
| inClass: "StreamVideo" | ||
| method: "onCallKitEvent" | ||
| changes: | ||
| - kind: "rename" | ||
| newName: "onRingingEvent" | ||
|
|
||
| - title: "replace observeCoreCallKitEvents with observeCoreRingingEvents" | ||
| date: "2025-08-28" | ||
| element: | ||
| uris: | ||
| [ | ||
| "package:stream_video/src/stream_video.dart", | ||
| "package:stream_video/stream_video.dart", | ||
| ] | ||
| inClass: "StreamVideo" | ||
| method: "observeCoreCallKitEvents" | ||
| changes: | ||
| - kind: "rename" | ||
| newName: "observeCoreRingingEvents" | ||
|
|
||
| - title: "replace observeCallAcceptCallKitEvent with observeCallAcceptRingingEvent" | ||
| date: "2025-08-28" | ||
| element: | ||
| uris: | ||
| [ | ||
| "package:stream_video/src/stream_video.dart", | ||
| "package:stream_video/stream_video.dart", | ||
| ] | ||
| inClass: "StreamVideo" | ||
| method: "observeCallAcceptCallKitEvent" | ||
| changes: | ||
| - kind: "rename" | ||
| newName: "observeCallAcceptRingingEvent" | ||
|
|
||
| - title: "replace observeCallEndedCallKitEvent with observeCallEndedRingingEvent" | ||
| date: "2025-08-28" | ||
| element: | ||
| uris: | ||
| [ | ||
| "package:stream_video/src/stream_video.dart", | ||
| "package:stream_video/stream_video.dart", | ||
| ] | ||
| inClass: "StreamVideo" | ||
| method: "observeCallEndedCallKitEvent" | ||
| changes: | ||
| - kind: "rename" | ||
| newName: "observeCallEndedRingingEvent" | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.