-
Notifications
You must be signed in to change notification settings - Fork 27
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
feat: Track ended call segmentation [#WPB-14256] #3756
base: develop
Are you sure you want to change the base?
Conversation
Quality Gate passedIssues Measures |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #3756 +/- ##
===========================================
+ Coverage 45.76% 45.78% +0.02%
===========================================
Files 477 477
Lines 16199 16206 +7
Branches 2744 2744
===========================================
+ Hits 7413 7420 +7
Misses 8017 8017
Partials 769 769
Continue to review full report in Codecov by Sentry.
|
Built wire-android-staging-compat-pr-3756.apk is available for download |
Built wire-android-dev-debug-pr-3756.apk is available for download |
trackRecentlyEndedCall() | ||
} | ||
|
||
private fun trackRecentlyEndedCall() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: wouldn't be better to have it in WireApplication
than WireActivity
? I mean, we can have CallActivity
started without WireActivity
, then after ending that call it won't trigger this event, right? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point, sure ! going to move it up, tomorrows morning
return when (conversationDetails.conversationType) { | ||
Conversation.Type.ONE_ON_ONE -> "one_to_one" | ||
Conversation.Type.GROUP -> "group" | ||
else -> "unknown" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is "unknown" specified anywhere?
https://wearezeta.atlassian.net/browse/WPB-14256
What's new in this PR?
Issues
Missing tracking for ended call.
Solutions
Map
RecentlyEndedCallMetadata
into the analytics segmentation and send the event to countlyPR Post Submission Checklist for internal contributors (Optional)
PR Post Merge Checklist for internal contributors
References
feat(conversation-list): Sort conversations by most emojis in the title #SQPIT-764
.