Skip to content

Instantly share code, notes, and snippets.

@zwaldowski
Last active October 27, 2021 20:58
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
// 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