Last active
October 27, 2021 20:58
-
-
Save zwaldowski/b5c9302bf683e42db3c8ad8be61b8f25 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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