-
Notifications
You must be signed in to change notification settings - Fork 15
/
Info.plist.in
89 lines (70 loc) · 2.86 KB
/
Info.plist.in
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<!-- Executable Name -->
<key>CFBundleExecutable</key>
<string>${MACOSX_BUNDLE_EXECUTABLE_NAME}</string>
<!-- Info for finder -->
<key>CFBundleGetInfoString</key>
<string>${MACOSX_BUNDLE_INFO_STRING}</string>
<!-- Full screen, allow multi task or not -->
<key>UIRequiresFullScreen</key>
<string>${MACOSX_BUNDLE_REQUIRES_FULL_SCREEN}</string>
<!-- Hide the status bar -->
<key>UIStatusBarHidden</key>
<${MACOSX_BUNDLE_HIDDEN_STATUS_BAR}/>
<!-- If supporting multitask LaunchScreen.storyboard must be provided -->
<key>UILaunchStoryboardName</key>
<string>${MACOSX_BUNDLE_LAUNCHSCREEN_STORYBOARD}</string>
<!-- Optionnal StoryBoard filename -->
<key>UIMainStoryboardFile</key>
<string>${MACOSX_BUNDLE_MAIN_STORYBOARD}</string>
<!-- Name displayed -->
<key>CFBundleIdentifier</key>
<string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<!-- Long version that include build number or git commit -->
<key>CFBundleLongVersionString</key>
<string>${MACOSX_BUNDLE_LONG_VERSION_STRING}</string>
<!-- Unique bundle name across AppStore -->
<key>CFBundleName</key>
<string>${MACOSX_BUNDLE_BUNDLE_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<!-- Short Version -->
<key>CFBundleShortVersionString</key>
<string>${MACOSX_BUNDLE_SHORT_VERSION_STRING}</string>
<key>CFBundleSignature</key>
<string>????</string>
<!-- Bundle Version to detect update on AppStore -->
<key>CFBundleVersion</key>
<string>${MACOSX_BUNDLE_BUNDLE_VERSION}</string>
<key>CSResourcesFileMapped</key>
<true/>
<!-- Copyright -->
<key>NSHumanReadableCopyright</key>
<string>${MACOSX_BUNDLE_COPYRIGHT}</string>
<!-- A message that tells the user why the app is requesting add-only access to the user’s photo library -->
${MACOSX_BUNDLE_PHOTO_LIBRARY_USAGE_DESCRIPTION}
<!-- Ui Orientation -->
<key>UISupportedInterfaceOrientations</key>
<array>
<string>${MACOSX_BUNDLE_PORTRAIT}</string>
<string>${MACOSX_BUNDLE_PORTRAITUPDOWN}</string>
<string>${MACOSX_BUNDLE_LANDSCAPELEFT}</string>
<string>${MACOSX_BUNDLE_LANDSCAPERIGHT}</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>${MACOSX_BUNDLE_PORTRAIT}</string>
<string>${MACOSX_BUNDLE_PORTRAITUPDOWN}</string>
<string>${MACOSX_BUNDLE_LANDSCAPELEFT}</string>
<string>${MACOSX_BUNDLE_LANDSCAPERIGHT}</string>
</array>
${QT_IOS_ITS_ENCRYPTION_KEYS}
</dict>
</plist>