// swift-tools-version: 5.5 // WARNING: // This file is automatically generated. // Do not edit it by hand because the contents will be replaced. import PackageDescription import AppleProductTypes let package = Package( name: "LittleAppDude", platforms: [ .iOS("15.0") ], products: [ .iOSApplication( name: "LittleAppDude", targets: ["AppModule"], bundleIdentifier: "me.waldowski.LittleAppDude", teamIdentifier: "xxxxxxxxxx", displayVersion: "1.0", bundleVersion: "1", iconAssetName: "AppIcon", accentColorAssetName: "AccentColor", supportedDeviceFamilies: [ .pad, .phone ], supportedInterfaceOrientations: [ .portrait, .landscapeRight, .landscapeLeft, .portraitUpsideDown(.when(deviceFamilies: [.pad])) ] ) ], targets: [ .executableTarget( name: "AppModule", path: "." ) ] )