Files
HuLa/src-tauri/Info.plist
Dawn ae144b6e55 feat(mobile): optimize mobile style and functionality (#355)
* fix(common): 🐛 auto login error

* fix(common): 🐛 change messageMap from map to record

* fix(common): 🐛 force persist pinia

* fix(common): 🐛 hide splash screen after login

* fix(common): 🐛 ios slashscreen

* fix(common): 🐛 android adept safe area

* fix(common): 🐛 drawing from public events

* fix(common): 🐛 fix ios upload appstore and pc side issues

* feat(mobile):  add new chatroom input panel

* fix(status): 🐛 fix inconsistent colors during online state init

* style(mobile): 💄 optimize some presentation styles on the mobile side

---------

Co-authored-by: wanwanruwoxin <254693270@qq.com>
Co-authored-by: 乾乾 <1046762075@qq.com>
Co-authored-by: 卡仔 <1271013637@qq.com>
2025-10-16 03:12:14 +08:00

28 lines
1.2 KiB
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>NSScreenCaptureUsageDescription</key>
<string>HuLa needs screen recording permission to enable screenshot functionality</string>
<key>NSAccessibilityUsageDescription</key>
<string>HuLa needs accessibility permission to capture screen content</string>
<key>NSLocalNetworkUsageDescription</key>
<string>HuLa needs local network access to reach your development server</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>