Skip to content
Merged
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
use official Android SDK
  • Loading branch information
madsodgaard committed Oct 22, 2025
commit 55d476b932a3ae2a832f08eab14991b71dfff447
5 changes: 3 additions & 2 deletions swift-java-hashing-example/hashing-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ def swiftRuntimeLibs = [
"swiftSynchronization"
]

def sdkName = "swift-6.2-RELEASE-android-0.1.artifactbundle"
def sdkName = "swift-DEVELOPMENT-SNAPSHOT-2025-10-16-a-android-0.1.artifactbundle"
def swiftVersion = "main-snapshot-2025-10-16"
def minSdk = android.defaultConfig.minSdkVersion.apiLevel
/**
* Android ABIs and their Swift triple mappings
Expand Down Expand Up @@ -149,7 +150,7 @@ abis.each { abi, info ->

workingDir = layout.projectDirectory
executable(getSwiftlyPath())
args("run", "swift", "build", "+6.2", "--swift-sdk", info.triple)
args("run", "swift", "build", "+${swiftVersion}", "--swift-sdk", info.triple)
}

buildSwiftAll.configure { dependsOn(task) }
Expand Down