Überspringt die App-Verschlüsselungs-Abfrage in App Store Connect bei jedem TestFlight-Upload. Entspricht der "Keinen der oben genannten Algorithmen"-Wahl, weil die App nur HTTPS nutzt und damit unter US-Export-Recht exempt ist. In project.yml mitgepflegt, damit xcodegen den Key nicht beim nächsten Regen wegblässt. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
31 lines
952 B
Text
31 lines
952 B
Text
<?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>$(DEVELOPMENT_LANGUAGE)</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Wordeck Widget</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>XPC!</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1</string>
|
|
<key>NSExtension</key>
|
|
<dict>
|
|
<key>NSExtensionPointIdentifier</key>
|
|
<string>com.apple.widgetkit-extension</string>
|
|
</dict>
|
|
<key>ITSAppUsesNonExemptEncryption</key>
|
|
<false/>
|
|
</dict>
|
|
</plist>
|