You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently screen name is captured in a way that includes object address, which is different each time object instantiated. This way I can't filter by actual Screen Name because there are plenty of records for single screen name.
Possible Solution
There are plenty of possible solutions, but the easiest one would be to just print Class of an object, and not include brackets, object address etc. So that it would be: FriendProfile instead of <Evenly.FriendProfile: 0x10501e800>
Steps to Reproduce
Just enable defaultTracking so that screenViews are tracked, so defaultTracking: .init(screenViews: true) or defaultTracking: .ALL and see what's received by Amplitude
Environment
SDK Version: Amplitude-Swift 1.1.0
OS Info: iOS 17.0.1, iOS Simulator iPhone 15 Pro Max
The text was updated successfully, but these errors were encountered:
Expected Behavior
Current Behavior
Currently screen name is captured in a way that includes object address, which is different each time object instantiated. This way I can't filter by actual Screen Name because there are plenty of records for single screen name.
Possible Solution
There are plenty of possible solutions, but the easiest one would be to just print Class of an object, and not include brackets, object address etc. So that it would be:
FriendProfile
instead of<Evenly.FriendProfile: 0x10501e800>
Steps to Reproduce
defaultTracking
so that screenViews are tracked, sodefaultTracking: .init(screenViews: true)
ordefaultTracking: .ALL
and see what's received by AmplitudeEnvironment
The text was updated successfully, but these errors were encountered: