-
Notifications
You must be signed in to change notification settings - Fork 222
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
Add Catalyst support to Analytics #2057
Add Catalyst support to Analytics #2057
Conversation
f707d8d
to
56230d5
Compare
Codecov Report
@@ Coverage Diff @@
## feature/support-catalyst #2057 +/- ##
=========================================================
Coverage 91.63% 91.63%
=========================================================
Files 129 129
Lines 10072 10072
=========================================================
Hits 9229 9229
Misses 843 843
Continue to review full report at Codecov.
|
AppCenterAnalytics/AppCenterAnalytics.xcodeproj/project.pbxproj
Outdated
Show resolved
Hide resolved
854b67d
to
2fbbc01
Compare
2fbbc01
to
396fa61
Compare
Codecov Report
@@ Coverage Diff @@
## feature/support-catalyst #2057 +/- ##
============================================================
- Coverage 91.38% 91.30% -0.08%
============================================================
Files 113 113
Lines 8413 8431 +18
============================================================
+ Hits 7688 7698 +10
- Misses 725 733 +8
Continue to review full report at Codecov.
|
#elif TARGET_OS_MACCATALYST | ||
// This returns scale value based on scale values iOS. | ||
// So we need to use base value for macOS. | ||
CGFloat scale = 3; |
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.
Move magic numbers to consts
…appcenter-sdk-apple into feature/core-catalyst # Conflicts: # AppCenter/AppCenter/Internals/Util/MSUtility.m
…ture/core-catalyst
tvOS 11 is a minimum supported in the SDK version.
# Conflicts: # AppCenter/AppCenterTests/MSDeviceTrackerTests.m
…eature/analytics-catalyst
Things to consider before you submit the PR:
HasCHANGELOG.md
been updated?Did you add unit tests?Did you check UI tests on the sample app? They are not executed on CI.Description
In Catalyst project for macOS and for native macOS we have different sending data in analytics reports.
Different screen size
Was: “screenSize” : “1800x2880",
Now: “screenSize” : “1200x1920"
Different model name (now just numbers)
Was: “MacBookPro15,2”,
Now: x86_64
Different OS name:
Was: “osName” : “macOS”,
Now: “osName” : “Mac OS X”
Related PRs or issues
AB#79044