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?
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?