The app was crashing on iOS when trying to access the biometric storage
to access the saved password. The crash was due to a missing key inside
the `Info.plist` file [0]. This patch fixes it by adding the missing
`NSFaceIDUsageDescription` key inside the `Info.plist` file.

- [0]
https://developer.apple.com/documentation/bundleresources/information-property-list/nsfaceidusagedescription

Signed-off-by: Shan Shaji <s.sh...@proxmox.com>
---
 ios/Runner/Info.plist | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist
index ef3f061..825d78d 100644
--- a/ios/Runner/Info.plist
+++ b/ios/Runner/Info.plist
@@ -24,6 +24,8 @@
        <string>$(FLUTTER_BUILD_NUMBER)</string>
        <key>LSRequiresIPhoneOS</key>
        <true/>
+       <key>NSFaceIDUsageDescription</key>
+       <string>Use Face ID for a faster and more convenient login 
experience.</string>
        <key>UILaunchStoryboardName</key>
        <string>LaunchScreen</string>
        <key>UIMainStoryboardFile</key>
-- 
2.39.5 (Apple Git-154)



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to