chore: 初始化项目基础结构和资源文件
- 添加项目图标文件(app-icon.png、各平台图标) - 配置开发环境文件(.env、.nvmrc、.npmrc) - 添加静态资源文件(背景图片、字体、音频) - 初始化Tauri后端结构(build.rs、main.rs、模块文件) - 配置前端项目结构(TypeScript、Vue组件、样式) - 添加Node.js API服务基础结构 - 配置构建和开发工具(vite、prettier、gitignore)
This commit is contained in:
36
src-tauri/Entitlements.plist
Normal file
36
src-tauri/Entitlements.plist
Normal file
@ -0,0 +1,36 @@
|
||||
<?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>com.apple.security.device.microphone</key>
|
||||
<true/>
|
||||
<!-- 音频输入权限 -->
|
||||
<key>com.apple.security.device.audio-input</key>
|
||||
<true/>
|
||||
<!-- 相机权限 -->
|
||||
<key>com.apple.security.device.camera</key>
|
||||
<true/>
|
||||
<!-- 文件读写权限 -->
|
||||
<key>com.apple.security.files.user-selected.read-write</key>
|
||||
<true/>
|
||||
<!-- 网络客户端权限 -->
|
||||
<key>com.apple.security.network.client</key>
|
||||
<true/>
|
||||
<!-- 网络服务端权限 -->
|
||||
<key>com.apple.security.network.server</key>
|
||||
<true/>
|
||||
<!-- 蓝牙权限 -->
|
||||
<key>com.apple.security.device.bluetooth</key>
|
||||
<true/>
|
||||
<!-- 本地通知权限 -->
|
||||
<key>com.apple.security.notifications</key>
|
||||
<true/>
|
||||
<!-- 自动化苹果事件权限
|
||||
<key>com.apple.security.automation.apple-events</key>
|
||||
<true/> -->
|
||||
<!-- 应用沙盒 -->
|
||||
<!-- <key>com.apple.security.app-sandbox</key>
|
||||
<true/> -->
|
||||
</dict>
|
||||
</plist>
|
||||
Reference in New Issue
Block a user