forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmobile-device-template.plist
More file actions
140 lines (140 loc) · 4.1 KB
/
mobile-device-template.plist
File metadata and controls
140 lines (140 loc) · 4.1 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?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>CFBundleDisplayName</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleName</key>
<string>${EXECUTABLE_NAME}</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>
${URL_TYPES}
${REMOTE_NOTIFICATION_TYPES}
<key>CFBundleSupportedPlatforms</key>
<array>
<string>iPhoneOS</string>
</array>
<key>CFBundleVersion</key>
<string>${BUNDLE_BUILD}</string>
<key>CFBundleShortVersionString</key>
<string>${BUNDLE_VERSION}</string>
${BUNDLE_ICONS}
<key>UILaunchImages</key>
<array>
${SPLASHSCREENS}
</array>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
${DT_PLATFORM_BUILD}
<key>DTPlatformName</key>
<string>iphoneos</string>
<key>DTPlatformVersion</key>
${DT_PLATFORM_VERSION}
<key>DTSDKBuild</key>
${DT_SDK_BUILD}
<key>DTSDKName</key>
${DT_SDK_NAME}
<key>DTXcode</key>
${DT_XCODE}
<key>DTXcodeBuild</key>
${DT_XCODE_BUILD}
<key>CFBundleDisplayName</key>
${BUNDLE_DISPLAY_NAME_SUPPORT}
<key>UIRequiresFullScreen</key>
<true/>
<key>MinimumOSVersion</key>
${MINIMUM_OS_SUPPORT}
<key>UIDeviceFamily</key>
<array>
${DEVICE_SUPPORT}
</array>
${DISABLE_ATS}
<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}
${BACKGROUND_LOCATION_UPDATE}
${BACKGROUND_VOIP}
${BACKGROUND_NEWSSTAND_DOWNLOADS}
${EXTERNAL_ACC_COMM}
${USE_BT_LE}
${ACTS_AS_BT_LE}
${BACKGROUND_FETCH}
${REMOTE_NOTIFICATIONS}
</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}
<key>LSApplicationQueriesSchemes</key>
<array>
${APP_URL_WHITELIST}
</array>
</dict>
</plist>