mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 15:45:48 +03:00
[GH-ISSUE #245] Add Android-to-iOS App Mapping CLI support (create/get/update/delete) #75
Labels
No labels
bug
bug
documentation
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/App-Store-Connect-CLI#75
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rudrankriyam on GitHub (Jan 28, 2026).
Original GitHub issue: https://github.com/rudrankriyam/App-Store-Connect-CLI/issues/245
Originally assigned to: @rudrankriyam on GitHub.
Overview
Add CLI support for Android-to-iOS App Mapping: creating, retrieving, updating, and deleting mapping details between Android and iOS apps using the App Store Connect API. This enables management of cross-platform app mappings from the CLI with JSON-first output and explicit flags.
Scope
Primary resources from the OpenAPI spec:
androidToIosAppMappingDetails(create/get/update/delete)Proposed CLI
Top-level group:
asc android-ios-mapping <subcommand> [flags]Subcommands:
android-ios-mapping list|get|create|update|delete(forandroidToIosAppMappingDetails)Examples:
asc android-ios-mapping list --app APP_IDasc android-ios-mapping get --mapping-id MAPPING_IDasc android-ios-mapping create --app APP_ID --android-package-name com.example.androidasc android-ios-mapping update --mapping-id MAPPING_ID --android-package-name com.example.android.newasc android-ios-mapping delete --mapping-id MAPPING_ID --confirmFlag patterns
Common:
--app,--output,--pretty,--limit,--next,--paginate--confirmfor delete operationsResource-specific examples:
--mapping-id--android-package-nameOutput
--prettyfor JSON--output table/markdownfor list commandsAcceptance criteria
asc --helpandasc android-ios-mapping --help--paginate,--next,--limit)--confirmTests
Implementation notes
cmd/android_ios_mapping*.goandinternal/asc/client_android_ios_mapping*.gointernal/asc/output_android_ios_mapping.gocmd/root.gointernal/asc/client_types.gocmd/apps.go,cmd/versions.go, and output helpers ininternal/asc/output_*