-
Notifications
You must be signed in to change notification settings - Fork 109
Closed
Labels
Description
Describe the bug
In analytics-swift the network object does not include the carrier property whereas analytics-ios did. Below a comparison of both objects
analytics-ios v4.1.3
"library": {
"name": "analytics-ios",
"version": "4.1.3"
},
"locale": "en-US",
"network": {
"carrier": "T-Mobile",
"cellular": true,
"wifi": false
}
analytics-swift v1.2.0
library": {
"name": "analytics-swift",
"version": "1.2.0"
},
"locale": "en-US",
"network": {
"bluetooth": false,
"cellular": true,
"wifi": false
}
To Reproduce
Steps to reproduce the behavior:
- Using the
analytics-swiftlibrary log an event - The event metadata will not include the
carrierproperty in thenetworkobject
Expected behavior
The network metadata should be consistent between analytics-ios and analytics-swift SDKs. This is seen as a regression issue after upgrading to the new package.
Platform (please complete the following information):
- Library Version in use: v1.2.0
- Platform being tested: iOS
- Integrations in use: N/A
Additional context
N/A