CFBundleVersion/CFBundleShortVersionString weren't declared in project.yml's properties block, so xcodegen defaulted them to "1"/"1.0" on every regenerate regardless of CURRENT_PROJECT_VERSION/ MARKETING_VERSION — bumping the build setting silently did nothing. Declared both explicitly (matching how CFBundleIdentifier and CFBundleExecutable already reference build settings), so version bumps now actually reach the compiled app. Verified: CFBundleVersion "2" in the built binary's Info.plist. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
59 lines
1.7 KiB
Plaintext
59 lines
1.7 KiB
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>BGTaskSchedulerPermittedIdentifiers</key>
|
|
<array>
|
|
<string>com.kisani.jarvis.briefing.refresh</string>
|
|
<string>com.kisani.jarvis.feed.refresh</string>
|
|
</array>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Jervis</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>$(EXECUTABLE_NAME)</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>$(PRODUCT_NAME)</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>$(MARKETING_VERSION)</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>$(CURRENT_PROJECT_VERSION)</string>
|
|
<key>LSApplicationQueriesSchemes</key>
|
|
<array>
|
|
<string>tailscale</string>
|
|
<string>zerotier</string>
|
|
<string>wireguard</string>
|
|
</array>
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
<true/>
|
|
<key>NSAllowsLocalNetworking</key>
|
|
<true/>
|
|
</dict>
|
|
<key>NSLocalNetworkUsageDescription</key>
|
|
<string>Jervis connects to your self-hosted news platform on the local network.</string>
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>fetch</string>
|
|
<string>processing</string>
|
|
</array>
|
|
<key>UILaunchScreen</key>
|
|
<dict>
|
|
<key>UIColorName</key>
|
|
<string></string>
|
|
</dict>
|
|
<key>UISupportedInterfaceOrientations</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|