Skip to content

Commit 0dc655c

Browse files
committed
Update Android install instructions to point to swift-DEVELOPMENT-SNAPSHOT-2025-10-16
1 parent c76ef1b commit 0dc655c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

documentation/articles/swift-android-getting-started.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: page
3-
date: 2025-06-01 12:00:00
3+
date: 2025-10-21 12:00:00
44
title: Getting Started with the Swift SDK for Android
55
author: [marcprux]
66
---
@@ -25,13 +25,13 @@ The first thing to note is that while `swift` may already be installed on your s
2525
The easiest and recommended way to manage host toolchains on macOS and Linux is to use [the swiftly command](https://www.swift.org/swiftly/documentation/swiftly/getting-started) command. Once that has been setup, you can install the host toolchain with:
2626

2727
```console
28-
$ swiftly install main-snapshot-2025-10-02
29-
Installing Swift main-snapshot-2025-10-02
28+
$ swiftly install main-snapshot-2025-10-16
29+
Installing Swift main-snapshot-2025-10-16
3030
Installing package in user home directory...
31-
main-snapshot-2025-10-02 installed successfully!
31+
main-snapshot-2025-10-16 installed successfully!
3232

33-
$ swiftly use main-snapshot-2025-10-02
34-
The global default toolchain has been set to `main-snapshot-2025-10-02` (was 6.2.0)
33+
$ swiftly use main-snapshot-2025-10-16
34+
The global default toolchain has been set to `main-snapshot-2025-10-16` (was 6.2.0)
3535

3636
$ swiftly run swift --version
3737
Apple Swift version 6.3-dev (LLVM 0d0246569621d5b, Swift 199240b3fe97eda)
@@ -43,16 +43,16 @@ Target: arm64-apple-macosx15.0
4343
Next, download and install the SDK bundle using the built-in `swift sdk` command:
4444

4545
```console
46-
$ swift sdk install https://github.com/swift-android-sdk/swift-android-sdk/releases/download/DEVELOPMENT-SNAPSHOT-2025-10-02-a/swift-DEVELOPMENT-SNAPSHOT-2025-10-02-a-android-0.1.artifactbundle.tar.gz --checksum 46f01534412f4998f996a6231ad695ed67760cac59f82f86b48a2eae7eb8fd66
46+
$ swift sdk install https://download.swift.org/development/android-sdk/swift-DEVELOPMENT-SNAPSHOT-2025-10-16-a/swift-DEVELOPMENT-SNAPSHOT-2025-10-16-a_android-0.1.artifactbundle.tar.gz --checksum 451844c232cf1fa02c52431084ed3dc27a42d103635c6fa71bae8d66adba2500
4747

48-
Swift SDK bundle at `https://github.com/swift-android-sdk/swift-android-sdk/releases/download/DEVELOPMENT-SNAPSHOT-2025-10-02-a/swift-DEVELOPMENT-SNAPSHOT-2025-10-02-a-android-0.1.artifactbundle.tar.gz` successfully installed as swift-DEVELOPMENT-SNAPSHOT-2025-10-02-a-android-0.1.artifactbundle.
48+
Swift SDK bundle at `https://download.swift.org/development/android-sdk/swift-DEVELOPMENT-SNAPSHOT-2025-10-16-a/swift-DEVELOPMENT-SNAPSHOT-2025-10-16-a_android-0.1.artifactbundle.tar.gz` successfully installed as swift-DEVELOPMENT-SNAPSHOT-2025-10-16-a-android-0.1.artifactbundle.
4949
```
5050

5151
You should now see the Android SDK included in the `swift sdk list` command:
5252

5353
```console
5454
$ swiftly run swift sdk list
55-
swift-DEVELOPMENT-SNAPSHOT-2025-10-02-a-android-0.1
55+
swift-DEVELOPMENT-SNAPSHOT-2025-10-16-a-android-0.1
5656
```
5757

5858
#### 3. Install and configure the Android NDK
@@ -73,7 +73,7 @@ Once you have downloaded and unpacked the NDK, you can link it up to the Swift S
7373

7474
```console
7575
$ cd ~/Library/org.swift.swiftpm || cd ~/.swiftpm
76-
$ ./swift-sdks/swift-DEVELOPMENT-SNAPSHOT-2025-10-02-a-android-0.1.artifactbundle/swift-android/scripts/setup-android-sdk.sh
76+
$ ./swift-sdks/swift-DEVELOPMENT-SNAPSHOT-2025-10-16-a-android-0.1.artifactbundle/swift-android/scripts/setup-android-sdk.sh
7777
setup-android-sdk.sh: success: ndk-sysroot linked to Android NDK at android-ndk-r27d/toolchains/llvm/prebuilt
7878
```
7979

0 commit comments

Comments
 (0)