MCPcopy Index your code
hub / github.com/NativeScript/SimDeck / fixtureInfoPlist

Function fixtureInfoPlist

scripts/integration/fixture.mjs:108–135  ·  view source on GitHub ↗
(bundleId, urlScheme)

Source from the content-addressed store, hash-verified

106}
107
108function fixtureInfoPlist(bundleId, urlScheme) {
109 return `<?xml version="1.0" encoding="UTF-8"?>
110<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
111<plist version="1.0">
112<dict>
113 <key>CFBundleDevelopmentRegion</key><string>en</string>
114 <key>CFBundleExecutable</key><string>${executable}</string>
115 <key>CFBundleIdentifier</key><string>${bundleId}</string>
116 <key>CFBundleInfoDictionaryVersion</key><string>6.0</string>
117 <key>CFBundleName</key><string>${executable}</string>
118 <key>CFBundlePackageType</key><string>APPL</string>
119 <key>CFBundleShortVersionString</key><string>1.0</string>
120 <key>CFBundleVersion</key><string>1</string>
121 <key>LSRequiresIPhoneOS</key><true/>
122 <key>MinimumOSVersion</key><string>${minimumIosVersion}</string>
123 <key>UIDeviceFamily</key><array><integer>1</integer></array>
124 <key>CFBundleURLTypes</key>
125 <array>
126 <dict>
127 <key>CFBundleURLName</key><string>${executable}</string>
128 <key>CFBundleURLSchemes</key>
129 <array><string>${urlScheme}</string></array>
130 </dict>
131 </array>
132</dict>
133</plist>
134`;
135}
136
137function fixtureSource() {
138 return `#import <QuartzCore/QuartzCore.h>

Callers 1

buildCachedFixtureAppFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected