Skip to content

Commit

Permalink
Support uploading obsolete architectures
Browse files Browse the repository at this point in the history
Closes #632
  • Loading branch information
lberrymage committed Sep 10, 2024
1 parent f8ef327 commit be59d67
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,10 @@ class S3PublishService(
Targeting.Abi.AbiAlias.ARM64_V8A -> "arm64-v8a"
Targeting.Abi.AbiAlias.X86 -> "x86"
Targeting.Abi.AbiAlias.X86_64 -> "x86_64"
else -> throw Exception("Unsupported ABI targeting")
// Simply don't publish ABI splits for architectures we don't support
else -> null
}
abiSplits.add(config)
config?.let { abiSplits.add(it) }

"split.$config.apk"
} else if (apkDescription.targeting.hasLanguageTargeting()) {
Expand Down

0 comments on commit be59d67

Please sign in to comment.