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
When trying to compile the project for Mac Catalyst target I'm getting the following error
'init(localized:table:bundle:locale:comment:)' is only available in Mac Catalyst 15 or newer 'LocalizationValue' is only available in Mac Catalyst 15 or newer
I guess we need to change @available(iOS 15.0, macCatalyst 14.0, OSX 12, tvOS 15.0, watchOS 8, *) to @available(iOS 15.0, macCatalyst **15.0**, OSX 12, tvOS 15.0, watchOS 8, *) in the library?
The text was updated successfully, but these errors were encountered:
Hmm, that's not good. Updated available for macCatalyst to 15.0 in release 1.3.2. I'll close this issue, but please re-open if there's another issue as I can't test it at the moment.
When trying to compile the project for Mac Catalyst target I'm getting the following error
'init(localized:table:bundle:locale:comment:)' is only available in Mac Catalyst 15 or newer
'LocalizationValue' is only available in Mac Catalyst 15 or newer
I guess we need to change
@available(iOS 15.0, macCatalyst 14.0, OSX 12, tvOS 15.0, watchOS 8, *)
to@available(iOS 15.0, macCatalyst **15.0**, OSX 12, tvOS 15.0, watchOS 8, *)
in the library?The text was updated successfully, but these errors were encountered: