New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when using --game-center ios setting
#20366
Comments
|
It seems like you have not included the output of |
|
We're seeing an error that may be related. We use produce(
app_identifier: ENV["PRODUCT_BUNDLE_IDENTIFIER"],
team_id: ENV["DEVELOPMENT_TEAM"],
itc_team_id: ENV["ITC_TEAM_ID"],
company_name: ENV["COMPANY_NAME"]
)Modifying this command to be the following, will still turn on Game Center even though we pass in produce(
app_identifier: ENV["PRODUCT_BUNDLE_IDENTIFIER"],
team_id: ENV["DEVELOPMENT_TEAM"],
itc_team_id: ENV["ITC_TEAM_ID"],
company_name: ENV["COMPANY_NAME"],
enable_services: {
game_center: "off"
}
)The issue then arrises when we try and build this app after creating it with the above fastlane produce action. The following error is returned on CircleCI: [17:51:27]: \e[31mError uploading ipa file:
[Transporter Error Output]: ERROR ITMS-90045: Invalid Code Signing Entitlements. Your application bundle's signature contains code signing entitlements that are not supported on iOS. Specifically, key 'com.apple.developer.game-center' in 'Payload/$REDACTED.app/$REDACTED' is not supported.\r
[Transporter Error Output]: Return status of iTunes Transporter was 1: ERROR ITMS-90045: Invalid Code Signing Entitlements. Your application bundle's signature contains code signing entitlements that are not supported on iOS. Specifically, key 'com.apple.developer.game-center' in 'Payload/$REDACTED.app/$REDACTED' is not supported.\r
[Transporter Error Output]: The call to the iTMSTransporter completed with a non-zero exit status: 1. This indicates a failure.\e[0mI saw there were Game Center updates at WWDC earlier this week, I wonder if this is related? To resolve this issue, we have two solutions:
After one of those is completed, we can regenerate the provisioning profile with Match and the same |
|
same progblem,game_center: "on",Automatically open when creating app |
|
Hi. Just to add, I'm also seeing game_center automatically being turned on when running produce. It seemed to start happening a couple of days after WWDC, and some Apple updates to the developer portal. |
New Issue Checklist
Issue Description
We were running into with fastlane today, when trying to fetch information to build apps. It was running fine until we got reports of build failing today and the
game_centersetting seemed to be causing issue. We removed it and we're able to build now.Command executed
Complete output when running fastlane, including the stack trace and command used
Same command as above
Environment
The text was updated successfully, but these errors were encountered: