-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.plist
More file actions
45 lines (38 loc) · 1.42 KB
/
Copy pathInfo.plist
File metadata and controls
45 lines (38 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?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>UIBackgroundModes</key>
<array>
<string>audio</string>
<string>fetch</string>
</array>
<!-- 本地通知权限说明 -->
<key>NSUserNotificationsUsageDescription</key>
<string>需要通知权限以在后台定时提醒您</string>
<!-- 麦克风权限(AVAudioSession 需要) -->
<key>NSMicrophoneUsageDescription</key>
<string>用于音频会话保活,支持后台声音播放</string>
<!-- App 支持的设备方向 -->
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<!-- iPad 方向 -->
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<!-- 启动画面 -->
<key>UILaunchScreen</key>
<dict/>
<!-- App 显示名称 -->
<key>CFBundleDisplayName</key>
<string>间隔计时器</string>
</dict>
</plist>