feat: Initial support for Android .apk build artifacts - #17
Merged
Merged
Conversation
The API now infers platform from the uploaded file, recognising a standalone APK by a root-level AndroidManifest.xml, so no request fields change. The only CLI blocker was validateArtifact, which rejected .apk outright. Validate APKs the way we validate IPAs: open the zip and require the manifest at the root. Archives that bundle APKs inside them (XAPK, APK sets) are caught locally with the same guidance the API gives, saving a full upload round trip. Push already streams files unmodified, which the API requires for APKs. Extensions are now matched case-insensitively, since Android build pipelines produce more varied filename casing than Xcode does. Android support is a limited beta, so the docs keep their iOS framing and note the beta in one line rather than advertising it. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
robotrory
approved these changes
Sep 21, 2026
semaloop-release Bot
pushed a commit
that referenced
this pull request
Sep 21, 2026
# [1.8.0](v1.7.0...v1.8.0) (2026-09-21) ### Features * Initial support for Android .apk build artifacts ([#17](#17)) ([5d3731e](5d3731e))
|
🎉 This PR is included in version 1.8.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
.apkto the artifactssemaloop build pushaccepts.The API side infers platform from the uploaded file. It recognises a standalone APK by a root-level
AndroidManifest.xml, so no request fields change and the generated client ininternal/apineeds no update. The only blocker in the CLI wasvalidateArtifact, which rejected.apkwith "not a supported iOS artifact".Android is a limited beta, so the README keeps its iOS framing plus one line pointing people at us, and the GitHub Action's descriptions are unchanged. The only other place
.apkappears is in the "unsupported extension" error, which has to name what it accepts.Testing
New cases cover a valid APK, a directory, a non-zip, a missing manifest, an APK set, uppercase extensions, and an end-to-end push asserting the uploaded bytes equal the file on disk. Also exercised by hand against real
.apkfiles.