ITSAppUsesNonExemptEncryption=false in die Info.plist. Die App nutzt nur die Standard-Verschluesselung des Systems (HTTPS), faellt damit unter die Ausnahme und die "App Encryption Documentation"-Frage entfaellt bei jedem Upload. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
115 lines
4.1 KiB
Plaintext
115 lines
4.1 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>
|
|
<!-- Von Xcode aus den Build-Einstellungen gefuellt -->
|
|
<!-- Deutsch als Sprache der App: Sonst zeichnet iOS DatePicker und
|
|
Monatsnamen auf Englisch ("10. Dec 2027"). -->
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>de</string>
|
|
<key>CFBundleLocalizations</key>
|
|
<array>
|
|
<string>de</string>
|
|
</array>
|
|
<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>CFBundleDisplayName</key>
|
|
<string>Vorrania</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1</string>
|
|
|
|
<!-- Export-Compliance: Die App nutzt nur die Standard-Verschluesselung des
|
|
Systems (HTTPS ueber Apples Betriebssystem) und faellt damit unter die
|
|
Ausnahme. Mit diesem Schluessel entfaellt die "App Encryption
|
|
Documentation"-Rueckfrage bei jedem Upload nach App Store Connect. -->
|
|
<key>ITSAppUsesNonExemptEncryption</key>
|
|
<false/>
|
|
|
|
<key>UILaunchScreen</key>
|
|
<dict/>
|
|
|
|
<!-- Am iPad verlangt das System alle Ausrichtungen, solange die App nicht
|
|
auf Vollbild besteht. Am iPhone bleibt Hochkant plus Querformat. -->
|
|
<key>UISupportedInterfaceOrientations</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
</array>
|
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
</array>
|
|
|
|
<!-- Kamera für den Barcode-Scan -->
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>Die Kamera wird zum Scannen von Barcodes beim Ein- und Auslagern verwendet.</string>
|
|
|
|
<!-- Lokaler Server ohne HTTPS (Heimnetz) -->
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsLocalNetworking</key>
|
|
<true/>
|
|
</dict>
|
|
|
|
<!-- Hintergrund-Aktualisierung: die App frischt gelegentlich den Plan der
|
|
Ablauf-Benachrichtigungen auf. Zeitpunkt bestimmt iOS. -->
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>fetch</string>
|
|
</array>
|
|
<key>BGTaskSchedulerPermittedIdentifiers</key>
|
|
<array>
|
|
<string>com.scarriffle.vorrania.refresh</string>
|
|
</array>
|
|
|
|
<!-- Schnellaktionen beim langen Druck auf das App-Symbol -->
|
|
<key>UIApplicationShortcutItems</key>
|
|
<array>
|
|
<dict>
|
|
<key>UIApplicationShortcutItemType</key>
|
|
<string>com.scarriffle.vorrania.checkin</string>
|
|
<key>UIApplicationShortcutItemTitle</key>
|
|
<string>Einlagern</string>
|
|
<key>UIApplicationShortcutItemIconType</key>
|
|
<string>UIApplicationShortcutIconTypeAdd</string>
|
|
</dict>
|
|
<dict>
|
|
<key>UIApplicationShortcutItemType</key>
|
|
<string>com.scarriffle.vorrania.checkout</string>
|
|
<key>UIApplicationShortcutItemTitle</key>
|
|
<string>Auslagern</string>
|
|
<key>UIApplicationShortcutItemIconType</key>
|
|
<string>UIApplicationShortcutIconTypeRemove</string>
|
|
</dict>
|
|
</array>
|
|
|
|
<!-- vorrania://checkin bzw. vorrania://checkout -->
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleURLName</key>
|
|
<string>com.scarriffle.vorrania</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>vorrania</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
</plist>
|