Skip to content
Closed
Show file tree
Hide file tree
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
20 changes: 19 additions & 1 deletion content/troubleshooting/common-ios-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,4 +323,22 @@ If the scheme is correct and shared, add the following command to the Post-clone
{{< highlight yaml "style=paraiso-dark">}}
flutter pub get
{{< /highlight >}}
This ensures that all necessary iOS project files are properly generated before dependency installation begins.
This ensures that all necessary iOS project files are properly generated before dependency installation begins.


### The bundle identifier cannot be changed from the current value, 'xxx'.

###### Description
When building code signing an ios app, you may encounter the following error in the publishing step:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
When building code signing an ios app, you may encounter the following error in the publishing step:
When code signing your iOS app, you may encounter the following error in the publishing step:


This bundle is invalid. The bundle identifier cannot be changed from the current value, 'xxx'. If you want to change your bundle identifier, you will need to create a new application in App Store Connect

###### Cause
This is an known issue which comes with the recent versions of [altool](https://github.com/fastlane/fastlane/issues/29698#issuecomment-3329783816)(shipped with Xcode 26) which has introduced a bug that can cause binary uploads to fail when multiple apps share a similar bundle ID prefix (e.g., com.mycompany.app and com.mycompany.app.test)., it's related to this bug in new
Copy link
Collaborator

@icarusdust icarusdust Nov 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
This is an known issue which comes with the recent versions of [altool](https://github.com/fastlane/fastlane/issues/29698#issuecomment-3329783816)(shipped with Xcode 26) which has introduced a bug that can cause binary uploads to fail when multiple apps share a similar bundle ID prefix (e.g., com.mycompany.app and com.mycompany.app.test)., it's related to this bug in new
This is a known issue that comes with the recently updated version of [altool](https://github.com/fastlane/fastlane/issues/29698#issuecomment-3329783816) shipped with Xcode 26.0. It has introduced a bug that can cause binary uploads to fail when multiple apps share a similar bundle ID prefix (e.g., com.mycompany.app and com.mycompany.app.test) in App Store Connect.



###### Solution
The known and effective workaround is to explicitly force altool to use the correct app ID by passing the argument: ```--apple-id <app-apple-id>```. We’ve added support for an optional ```--altool-additional-arguments``` option to the app-store-connect publish action. This allows you to pass any additional CLI arguments directly to altool. You can also set this via the environment variable: ```APP_STORE_CONNECT_ALTOOL_ADDITIONAL_ARGUMENTS```. Your app's Apple ID can be found in AppStoreConnect > General > App Information > Apple ID
Copy link
Collaborator

@icarusdust icarusdust Nov 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where to use the flag ?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this section is unclear


{{< figure size="medium" src="../uploads/2025/altool-bug.png" caption="Environment variable for altool fix" >}}

1 change: 0 additions & 1 deletion content/troubleshooting/common-windows-issues.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: Common Windows issues
description: How to overcome common issues building mobile apps on Codemagic with Windows
description:
weight: 2
---

Expand Down
Binary file added content/uploads/2025/altool-bug.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.