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
Hi. I tried to compile GitJournal and got the following error -
Swift Compiler Error (Xcode): Stored properties cannot be marked potentially unavailable with
'@available'
/Users/vishesh/.pub-cache/hosted/pub.dev/flutter_tex_js_ios-1.0.7/ios/Classes/SwiftFlutterTexJsPlugi
n.swift:16:5
However, if I try to remove the @available, I get the following error -
Swift Compiler Error (Xcode): 'TexRenderer' is only available in iOS 11.0 or newer
/Users/vishesh/.pub-cache/hosted/pub.dev/flutter_tex_js_ios-1.0.7/ios/Classes/SwiftFlutterTexJsPlugi
n.swift:17:24
My Podfile says 11.0, and changing it to 14.0 also does not help. Do you have any suggestions on how I could fix this? I'm on an m2 macbook air.
The text was updated successfully, but these errors were encountered:
I cloned GitJournal and tried to reproduce, but fixing up the code signing to work with my accounts was too annoying so I gave up.
Recent Flutter seems to only support iOS 11.0+: when I tried to set it to an earlier version (9.0) to reproduce the issue, the tooling always forced the version back to 11.0.
(With 11.0+ the issue is probably moot because the stored properties are unconditionally available.)
Regardless, it seems iOS 10 and earlier are dead and buried in the Flutter ecosystem, so I have put out new releases of flutter_tex_js_ios, flutter_tex_js, and org_flutter that require iOS 11.0+. Try bumping your org_flutter version to ^3.0.0.
Hi. I tried to compile GitJournal and got the following error -
However, if I try to remove the
@available
, I get the following error -My Podfile says
11.0
, and changing it to14.0
also does not help. Do you have any suggestions on how I could fix this? I'm on an m2 macbook air.The text was updated successfully, but these errors were encountered: