Skip to content

Instantly share code, notes, and snippets.

@zwaldowski
Last active October 27, 2021 20:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zwaldowski/b5c9302bf683e42db3c8ad8be61b8f25 to your computer and use it in GitHub Desktop.
Save zwaldowski/b5c9302bf683e42db3c8ad8be61b8f25 to your computer and use it in GitHub Desktop.
// 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: "."
)
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment