Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions apple-platforms/Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// swift-tools-version: 6.2

import PackageDescription

let package = Package(
name: "SwiftApplePlatforms",
products: [
.library(name: "SwiftApplePlatforms", targets: ["SwiftApplePlatforms"])
],
dependencies: [
.package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.1.0")
],
targets: [
.target(
name: "SwiftApplePlatforms",
path: "Sources"
)
]
)
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ``SwiftApplePlatforms``

Build and ship apps for iOS, iPadOS, macOS, watchOS, tvOS, and visionOS.

@Metadata {
@DisplayName("Apple platforms")
@TitleHeading("")
}

Swift is the primary language for building apps across Apple's platforms, with
deep integration into Xcode, Apple's SDKs, and frameworks like SwiftUI and
UIKit.

Visit [Apple Developer Documentation](https://developer.apple.com/documentation/technologies)
for platform-specific APIs, frameworks, and guides.
13 changes: 13 additions & 0 deletions apple-platforms/Sources/_empty.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2026 Apple Inc. and the Swift.org project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of Swift.org project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
1 change: 1 addition & 0 deletions scripts/navigation.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"title": "Platforms",
"modules": [
{ "source": "swift-android", "path": "/documentation/swiftandroid", "title": "Android" },
{ "source": "swift-apple-platforms", "path": "/documentation/swiftappleplatforms", "title": "Apple platforms" },
{ "source": "embedded-swift", "path": "/documentation/embeddedswift", "title": "Embedded Swift" },
{ "source": "swift-linux", "path": "/documentation/swiftlinux", "title": "Linux" },
{ "source": "swift-wasm", "path": "/documentation/wasmguide", "title": "WebAssembly (Wasm)"}
Expand Down
6 changes: 6 additions & 0 deletions scripts/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@
"ref": "main",
"targets": ["SwiftAndroid"]
},
{
"id": "swift-apple-platforms",
"type": "local",
"path": "apple-platforms",
"targets": ["SwiftApplePlatforms"]
},
{
"id": "swift-server-todos-tutorial",
"type": "git",
Expand Down