2025-03-08 16:38:00 +00:00
|
|
|
// swift-tools-version: 6.0
|
2023-04-30 06:33:19 +00:00
|
|
|
|
|
|
|
|
// WARNING:
|
|
|
|
|
// This file is automatically generated.
|
|
|
|
|
// Do not edit it by hand because the contents will be replaced.
|
|
|
|
|
|
|
|
|
|
import AppleProductTypes
|
2025-04-05 20:51:39 +00:00
|
|
|
import PackageDescription
|
2023-04-30 06:33:19 +00:00
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
|
name: "DNSecure",
|
|
|
|
|
platforms: [
|
|
|
|
|
.iOS("16.1")
|
|
|
|
|
],
|
|
|
|
|
products: [
|
|
|
|
|
.iOSApplication(
|
|
|
|
|
name: "DNSecure",
|
|
|
|
|
targets: ["DNSecure"],
|
|
|
|
|
bundleIdentifier: "xyz.kebo.DNSecure",
|
|
|
|
|
teamIdentifier: "X4678G5DL2",
|
2025-05-19 14:37:37 +00:00
|
|
|
displayVersion: "1.5.1",
|
2025-05-19 15:24:59 +00:00
|
|
|
bundleVersion: "1",
|
2023-04-30 06:33:19 +00:00
|
|
|
appIcon: .asset("AppIcon"),
|
|
|
|
|
accentColor: .asset("AccentColor"),
|
|
|
|
|
supportedDeviceFamilies: [
|
|
|
|
|
.pad,
|
2025-04-05 20:51:39 +00:00
|
|
|
.phone,
|
2023-04-30 06:33:19 +00:00
|
|
|
],
|
|
|
|
|
supportedInterfaceOrientations: [
|
|
|
|
|
.portrait,
|
|
|
|
|
.landscapeRight,
|
|
|
|
|
.landscapeLeft,
|
2025-04-05 20:51:39 +00:00
|
|
|
.portraitUpsideDown(.when(deviceFamilies: [.pad])),
|
2023-04-30 06:33:19 +00:00
|
|
|
],
|
|
|
|
|
appCategory: .utilities
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
targets: [
|
|
|
|
|
.executableTarget(
|
|
|
|
|
name: "DNSecure",
|
|
|
|
|
path: "DNSecure"
|
|
|
|
|
),
|
|
|
|
|
.testTarget(
|
|
|
|
|
name: "DNSecureTests",
|
|
|
|
|
dependencies: [
|
|
|
|
|
"DNSecure"
|
|
|
|
|
],
|
|
|
|
|
path: "DNSecureTests"
|
2025-04-05 20:51:39 +00:00
|
|
|
),
|
2023-04-30 06:33:19 +00:00
|
|
|
]
|
|
|
|
|
)
|