-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.plist
More file actions
46 lines (46 loc) · 1.19 KB
/
Info.plist
File metadata and controls
46 lines (46 loc) · 1.19 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
46
<?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>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>com.randy.EmoEaseApp</string>
<key>CFBundleURLSchemes</key>
<array>
<string>emoease</string>
</array>
</dict>
</array>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>NSNotificationUsageDescription</key>
<string>我们需要通知权限来提醒您记录日记和情绪</string>
<key>Privacy - Network Usage Description</key>
<string>EmoEase 需要访问网络以提供 AI 情绪分析服务</string>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
<false/>
</dict>
<key>UIBackgroundModes</key>
<array>
<string>remote-notification</string>
<string>fetch</string>
</array>
<key>UILaunchScreen</key>
<dict/>
<key>UNNotificationDefaultAuthorizationOptions</key>
<array>
<string>alert</string>
<string>badge</string>
<string>sound</string>
</array>
</dict>
</plist>