DNSecure/Package.swift
Kenta Kubo 34a1d4f81b
Add Package.swift for Swift Playgrounds
Swift Playgrounds support is currently limited because it doesn't
support essential entitlements for DNSecure. However, this is useful
for me to modify UI with Swift Playgrounds.
2023-04-30 15:33:19 +09:00

51 lines
1.3 KiB
Swift

// swift-tools-version: 5.8
// 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: "DNSecure",
platforms: [
.iOS("16.1")
],
products: [
.iOSApplication(
name: "DNSecure",
targets: ["DNSecure"],
bundleIdentifier: "xyz.kebo.DNSecure",
teamIdentifier: "X4678G5DL2",
displayVersion: "1.4.3",
bundleVersion: "19",
appIcon: .asset("AppIcon"),
accentColor: .asset("AccentColor"),
supportedDeviceFamilies: [
.pad,
.phone
],
supportedInterfaceOrientations: [
.portrait,
.landscapeRight,
.landscapeLeft,
.portraitUpsideDown(.when(deviceFamilies: [.pad]))
],
appCategory: .utilities
)
],
targets: [
.executableTarget(
name: "DNSecure",
path: "DNSecure"
),
.testTarget(
name: "DNSecureTests",
dependencies: [
"DNSecure"
],
path: "DNSecureTests"
)
]
)