-
Notifications
You must be signed in to change notification settings - Fork 181
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
Apple iOS Processing Failing: ITMS-90338: Non-public API usage #123
Comments
Same issue. |
I believe Apple is complaining about the use of
|
@ish2028 hmm, interesting. Do you think it could be fixed with something like: if #available(iOS 12, *) {
if case ASWebAuthenticationSessionError.canceledLogin = err {
result(FlutterError(code: "CANCELED", message: "User canceled login", details: nil))
return
}
- }
-
- if #available(iOS 11, *) {
+ } else if #available(iOS 11, *) {
if case SFAuthenticationError.canceledLogin = err {
result(FlutterError(code: "CANCELED", message: "User canceled login", details: nil))
return
}
} |
@LinusU potentially, but I was able to get my app approved after submitting another build with changes to my project source code. It was hit or miss with this issue. |
Okay, if anyone having troubles could try out the above change, that would be great! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We've been using this library for a while within our app and we're just now getting an error thats blocking us from submitting builds to Apple.
This started this afternoon with no code changes from our end, and at first glance it seems like there are not references to said classes within this plugin, but it's getting flagged anyways
The text was updated successfully, but these errors were encountered: