Open kristofferanger opened 3 years ago
In Xcode 13 I get this error message in the enum AdditionalField
AdditionalField
Enum cases with associated values cannot be marked potentially unavailable with '@available'
Seems like the availability attribute in a single case is no longer supported. The enum is used in this method on PasswordCoordinator:
PasswordCoordinator
func interaction(_ interaction: TrackingEvent.Interaction, with screen: TrackingEvent.Screen, additionalFields: [TrackingEvent.AdditionalField])
The effect is that the project won't compile. Is it any fix for this?
Is this hotfix okay (or will it break something that I don't see)?
In Xcode 13 I get this error message in the enum
AdditionalField
Seems like the availability attribute in a single case is no longer supported. The enum is used in this method on
PasswordCoordinator
:func interaction(_ interaction: TrackingEvent.Interaction, with screen: TrackingEvent.Screen, additionalFields: [TrackingEvent.AdditionalField])
The effect is that the project won't compile. Is it any fix for this?