35d7e17b03
Apple's version format specification is strictly checked on app store submission, even for embedded frameworks: http://apple.co/1WgelY1 The build version number should be a string comprised of three non-negative, period-separated integers with the first integer being greater than zero. The string should only contain numeric (0-9) and period (.) characters. So that's room for "1.5.0" but not for "1.5.0-906-g656f9c4". The full version returned from 'version.sh --bare' is now embedded under a 'VPXFullVersion' custom key in the Info.plist, so it can still be extracted from the resulting framework. Change-Id: If34a58d02e407379d1f1859fda533ef7f983170b
38 lines
1017 B
Plaintext
38 lines
1017 B
Plaintext
<?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>en</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>VPX</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.webmproject.VPX</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>VPX</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>FMWK</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>${VERSION}</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>CFBundleSupportedPlatforms</key>
|
|
<array>
|
|
<string>iPhoneOS</string>
|
|
</array>
|
|
<key>CFBundleVersion</key>
|
|
<string>${VERSION}</string>
|
|
<key>MinimumOSVersion</key>
|
|
<string>${IOS_VERSION_MIN}</string>
|
|
<key>UIDeviceFamily</key>
|
|
<array>
|
|
<integer>1</integer>
|
|
<integer>2</integer>
|
|
</array>
|
|
<key>VPXFullVersion</key>
|
|
<string>${FULLVERSION}</string>
|
|
</dict>
|
|
</plist>
|