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
There's a constant warning showing in Xcode:
WARNING: 'UIWindowScene' is only available on iOS 13.0 or newer.
in LiveChat-Swift.h file
in 2 functions: + (UIWindowScene * _Nullable)windowScene SWIFT_WARN_UNUSED_RESULT; + (void)setWindowScene:(UIWindowScene * _Nullable)value;
Possibly might be fixed by surrounding the block of code with @available 13.0 check, and use alternative code for devices with iOS < 13.0
The text was updated successfully, but these errors were encountered:
@abdulla-allaith thanks for pointing this out. All the usages of UIWindowScene in the widget are annotated with @available. It looks like Xcode also generates setter and getter for this static property which doesn't inherit this annotation and it causes a warning. We will try to address this issue in the next planned release.
There's a constant warning showing in Xcode:
WARNING:
'UIWindowScene' is only available on iOS 13.0 or newer.
in
LiveChat-Swift.h
filein 2 functions:
+ (UIWindowScene * _Nullable)windowScene SWIFT_WARN_UNUSED_RESULT;
+ (void)setWindowScene:(UIWindowScene * _Nullable)value;
Possibly might be fixed by surrounding the block of code with
@available 13.0
check, and use alternative code for devices with iOS < 13.0The text was updated successfully, but these errors were encountered: