mirror of
https://github.com/neon443/RNG_Swift.git
synced 2026-03-11 06:49:12 +00:00
Initial Commit
This commit is contained in:
47
Package.swift
Normal file
47
Package.swift
Normal file
@@ -0,0 +1,47 @@
|
||||
// swift-tools-version: 5.9
|
||||
|
||||
// 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: "RNG",
|
||||
platforms: [
|
||||
.iOS("16.0")
|
||||
],
|
||||
products: [
|
||||
.iOSApplication(
|
||||
name: "RNG",
|
||||
targets: ["AppModule"],
|
||||
bundleIdentifier: "com.neon443.RNG",
|
||||
teamIdentifier: "8626DL2GW3",
|
||||
displayVersion: "1.0",
|
||||
bundleVersion: "1",
|
||||
appIcon: .placeholder(icon: .calculator),
|
||||
accentColor: .presetColor(.blue),
|
||||
supportedDeviceFamilies: [
|
||||
.pad,
|
||||
.phone
|
||||
],
|
||||
supportedInterfaceOrientations: [
|
||||
.portrait,
|
||||
.landscapeRight,
|
||||
.landscapeLeft,
|
||||
.portraitUpsideDown(.when(deviceFamilies: [.pad]))
|
||||
],
|
||||
appCategory: .utilities
|
||||
)
|
||||
],
|
||||
targets: [
|
||||
.executableTarget(
|
||||
name: "AppModule",
|
||||
path: ".",
|
||||
swiftSettings: [
|
||||
.enableUpcomingFeature("BareSlashRegexLiterals")
|
||||
]
|
||||
)
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user