# XcodeGen-Spezifikation – erzeugt das Xcode-Projekt aus diesen Quellen. # brew install xcodegen && cd ios && xcodegen generate && open ProjectGood.xcodeproj # Alternativ kann man in Xcode ein leeres App-Projekt anlegen und den Ordner # "Sources" hineinziehen (siehe README.md). name: ProjectGood options: bundleIdPrefix: com.scarriffle deploymentTarget: iOS: "16.0" createIntermediateGroups: true targets: ProjectGood: type: application platform: iOS sources: - path: Sources info: path: Sources/Info.plist properties: CFBundleDisplayName: Project-Good CFBundleShortVersionString: "1.0" CFBundleVersion: "1" UILaunchScreen: {} NSCameraUsageDescription: >- Die Kamera wird zum Scannen von Barcodes beim Ein- und Auslagern verwendet. UIApplicationShortcutItems: - UIApplicationShortcutItemType: com.scarriffle.projectgood.checkin UIApplicationShortcutItemTitle: Einlagern UIApplicationShortcutItemIconType: UIApplicationShortcutIconTypeAdd - UIApplicationShortcutItemType: com.scarriffle.projectgood.checkout UIApplicationShortcutItemTitle: Auslagern UIApplicationShortcutItemIconType: UIApplicationShortcutIconTypeRemove CFBundleURLTypes: - CFBundleURLName: com.scarriffle.projectgood CFBundleURLSchemes: [projectgood] settings: base: PRODUCT_BUNDLE_IDENTIFIER: com.scarriffle.projectgood MARKETING_VERSION: "1.0" TARGETED_DEVICE_FAMILY: "1,2" SWIFT_VERSION: "5.9" GENERATE_INFOPLIST_FILE: NO