forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmobile-template.plist
More file actions
101 lines (101 loc) · 3.16 KB
/
mobile-template.plist
File metadata and controls
101 lines (101 loc) · 3.16 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
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
90
91
92
93
94
95
96
97
98
99
100
101
<?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>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>${BUNDLE_IDENTIFIER}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>${BUNDLE_BUILD}</string>
<key>CFBundleShortVersionString</key>
<string>${BUNDLE_VERSION}</string>
${URL_TYPES}
${BUNDLE_ICONS}
${DISABLE_ATS}
<key>CFBundleDisplayName</key>
${BUNDLE_DISPLAY_NAME_SUPPORT}
<key>MinimumOSVersion</key>
${MINIMUM_OS_SUPPORT}
<key>UILaunchImages</key>
<array>
${SPLASHSCREENS}
</array>
<key>UIDeviceFamily</key>
<array>
${DEVICE_SUPPORT}
</array>
<key>UIRequiredDeviceCapabilities</key>
<dict>
${DEVICE_CAPABILITY}
</dict>
<key>UIRequiresPersistentWiFi</key>
${PERSISTENT_WIFI}
<key>UIApplicationExitsOnSuspend</key>
${APPLICATION_EXITS_ON_SUSPEND}
<key>UIInitialInterfaceOrientation</key>
${IPHONE_INITIAL_ORIENTATION}
<key>UISupportedInterfaceOrientations</key>
<array>
${IPHONE_SUPPORTED_ORIENTATIONS}
</array>
<key>UIInitialInterfaceOrientation~ipad</key>
${IPAD_INITIAL_ORIENTATION}
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
${IPAD_SUPPORTED_ORIENTATIONS}
</array>
<key>UIBackgroundModes</key>
<array>
${PLAY_AUDIO_WHEN_IN_BACKGROUND}
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
${LOCATION_AUTH_TYPE}
<key>UIStatusBarHidden</key>
${STATUS_BAR_HIDDEN}
<key>UIStatusBarHidden~ipad</key>
${IPAD_STATUS_BAR_HIDDEN}
<key>UIStatusBarStyle</key>
${STATUS_BAR_STYLE}
<key>com_livecode_StatusBarSolid</key>
${STATUS_BAR_SOLID}
<key>com_livecode_UsesLocalNotifications</key>
${USES_LOCAL_NOTIFICATIONS}
<key>UIFileSharingEnabled</key>
${FILE_SHARING}
<key>UIPrerenderedIcon</key>
${PRE_RENDERED_ICON}
<key>UIAppFonts</key>
<array>
${CUSTOM_FONTS}
</array>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>This application requires access to Bluetooth</string>
<key>NSCalendarsUsageDescription</key>
<string>This application requires access to the device's calendar</string>
<key>NSCameraUsageDescription</key>
<string>This application requires access to the device's camera</string>
<key>NSContactsUsageDescription</key>
<string>This application requires access to your Contacts</string>
<key>NSMicrophoneUsageDescription</key>
<string>This application requires access to the device's microphone</string>
<key>NSMotionUsageDescription</key>
<string>This application requires access to the device's accelerometer</string>
<key>NSRemindersUsageDescription</key>
<string>This application requires access to your Reminders</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>This application requires access to Photo Library</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>This application requires access to Photo Library</string>
${HEALTHKIT}
</dict>
</plist>