Skip to content

Commit 035ac9c

Browse files
committed
Default to x64 arch
1 parent 441a16c commit 035ac9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@ fun getCurrentArchitecture(): String {
8585
return when {
8686
arch.contains("aarch64") || arch.contains("arm64") -> "arm64-v8a"
8787
arch.contains("x86_64") || arch.contains("amd64") -> "x86_64"
88-
else -> throw GradleException("Unsupported architecture: $arch")
88+
else -> "x86_64"
8989
}
9090
}

0 commit comments

Comments
 (0)