Initial Commit

This commit is contained in:
neon443
2024-05-26 19:24:17 +01:00
commit 32f03f50c3
12 changed files with 364 additions and 0 deletions

47
Package.swift Normal file
View 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")
]
)
]
)