We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
After updating to xcode15, latest capacitor version, ios 17 etc...
=> the plugin returned an error when compiling in Xcode saying:
Switch must be exhaustive.
I could compile with this patch:
diff --git a/node_modules/capacitor-face-id/ios/Plugin/Plugin.swift b/node_modules/capacitor-face-id/ios/Plugin/Plugin.swift index 3c7bb8a..48642fe 100644 --- a/node_modules/capacitor-face-id/ios/Plugin/Plugin.swift +++ b/node_modules/capacitor-face-id/ios/Plugin/Plugin.swift @@ -27,6 +27,10 @@ public class FaceId: CAPPlugin { call.success([ "value": "FaceId" ]) + @unknown default: + call.success([ + "value": "Unknown" + ]) } } else { call.success([
The text was updated successfully, but these errors were encountered:
same, please fix it
Sorry, something went wrong.
danielsogl
No branches or pull requests
After updating to xcode15, latest capacitor version, ios 17 etc...
=> the plugin returned an error when compiling in Xcode saying:
Switch must be exhaustive.
I could compile with this patch:
The text was updated successfully, but these errors were encountered: