Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stored properties cannot be marked potentially unavailable with '@available' #1310

Closed
wf1992 opened this issue Sep 13, 2022 · 14 comments
Closed
Labels
bug Something isn't working

Comments

@wf1992
Copy link

wf1992 commented Sep 13, 2022

image

Stored properties cannot be marked potentially unavailable with '@available'

@available(iOS 14.0, *)
lazy var contentWorld: WKContentWorld = WKContentWorld.page

can you fix this bug in Xcode 14?
@wf1992 wf1992 added the bug Something isn't working label Sep 13, 2022
@github-actions
Copy link

👋 @wf1992

NOTE: This comment is auto-generated.

Are you sure you have already searched for the same problem?

Some people open new issues but they didn't search for something similar or for the same issue. Please, search for it using the GitHub issue search box or on the official inappwebview.dev website, or, also, using Google, StackOverflow, etc. before posting a new one. You may already find an answer to your problem!

If this is really a new issue, then thank you for raising it. I will investigate it and get back to you as soon as possible. Please, make sure you have given me as much context as possible! Also, if you didn't already, post a code example that can replicate this issue.

In the meantime, you can already search for some possible solutions online! Because this plugin uses native WebView, you can search online for the same issue adding android WebView [MY ERROR HERE] or ios WKWebView [MY ERROR HERE] keywords.

Following these steps can save you, me, and other people a lot of time, thanks!

@aiqianqianli
Copy link

I also encountered this problem

@iBog
Copy link

iBog commented Sep 13, 2022

appeared after releasing xcode 14

webhaikal added a commit to amanzdev/flutter_inappwebview that referenced this issue Sep 13, 2022
@lam-nv
Copy link

lam-nv commented Sep 13, 2022

My team is also facing the same problem

@mdddj
Copy link

mdddj commented Sep 13, 2022

same question

@lam-nv
Copy link

lam-nv commented Sep 13, 2022

refer to MR #1238

@luongdong059
Copy link

My current fix is:

Update version in Podfile platform :ios, '14.0'

Reset pods cd ios && rm -rf Pods/ Podfile.lock && pod install --repo-update

@jdumont0201
Copy link

jdumont0201 commented Sep 13, 2022

Duplicate of #1216

Same here since the Xcode 14 update, targeting iOS 11.

Pubspec
flutter_inappwebview: ^5.4.3+7
Xcode


Xcode 14.0
Build version 14A309

Flutter Doctor

[✓] Flutter (Channel stable, 3.3.1, on macOS 12.6 21G115 darwin-arm, locale en-GB)
[✓] Android toolchain - develop for Android devices (Android SDK version 33.0.0)
[✓] Xcode - develop for iOS and macOS (Xcode 14.0)
[✓] Chrome - develop for the web
[✓] Android Studio (version 2021.2)
[✓] VS Code (version 1.71.0)
[✓] Connected device (3 available)
[✓] HTTP Host Availability

@mirkancal
Copy link

mirkancal commented Sep 13, 2022

My current fix is:

Update version in Podfile platform :ios, '14.0'

Reset pods cd ios && rm -rf Pods/ Podfile.lock && pod install --repo-update

@luongdong059 maybe "your current fix" has a source?
https://stackoverflow.com/a/73699790/9779791

@jdumont0201
Copy link

@EvGeniyLell
Copy link

EvGeniyLell commented Sep 14, 2022

hot fix could be like that

    private var _contentWorld: NSObject?
    @available(iOS 14.0, *)
    var contentWorld: WKContentWorld {
        get {
            return (_contentWorld as? WKContentWorld) ?? WKContentWorld.page
        }
        set {
            _contentWorld = newValue
        }
    }

instead of old

    @available(iOS 14.0, *)
    lazy var contentWorld: WKContentWorld = WKContentWorld.page

please, can you quickly add this to master ?

@Dorian0796
Copy link

hot fix could be like that

    private var _contentWorld: NSObject?
    @available(iOS 14.0, *)
    var contentWorld: WKContentWorld {
        get {
            return (_contentWorld as? WKContentWorld) ?? WKContentWorld.page
        }
        set {
            _contentWorld = newValue
        }
    }

instead of old

    @available(iOS 14.0, *)
    lazy var contentWorld: WKContentWorld = WKContentWorld.page

please, can you quickly add this to master ?

This works, please add this to master?

@wf1992
Copy link
Author

wf1992 commented Oct 8, 2022

this bug was fixed in new code version

@wf1992 wf1992 closed this as completed Oct 8, 2022
Copy link

This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug and a minimal reproduction of the issue.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 10, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

10 participants