mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-25 13:17:47 +02:00
a34fade500
* chore(ios): consolidate optional argument standard mark all optional iOS arguments as `var <name>: Type?`, following the pattern described in the documentation: https://v2.tauri.app/develop/plugins/develop-mobile/#ios * chore: add missing Info.plist to example
13 lines
464 B
Plaintext
13 lines
464 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>Request camera access for WebRTC</string>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>Request microphone access for WebRTC</string>
|
|
<key>NSFaceIDUsageDescription</key>
|
|
<string>Authenticate with biometrics</string>
|
|
</dict>
|
|
</plist>
|