fastlane: Something went wrong when creating the new app - it's not listed in the apps list (Produce)
New Issue Checklist
- Updated fastlane to the latest version
- I have read the Contribution Guidelines
Issue Description
Complete output when running fastlane, including the stack trace and command used
[20:25:43]: ---------------------
[20:25:43]: --- Step: produce ---
[20:25:43]: ---------------------
+----------------+----------------------------------+
| Summary for produce 1.1.2 |
+----------------+----------------------------------+
| username | xxx |
| app_name | xxx |
| app_identifier | xxx |
| skip_itc | true |
| sku | 1464031544 |
| language | English |
| skip_devcenter | false |
| team_id | VFX8SCY653 |
+----------------+----------------------------------+
[20:25:47]: Creating new app 'xxx
' on the Apple Dev Center
[20:25:48]: Created app 6EA3DYPZTK
Something went wrong when creating the new app - it's not listed in the apps list
[20:25:48]: fastlane finished with errors
/Users/travis/.rvm/gems/ruby-2.0.0-p648/gems/fastlane_core-0.44.0/lib/fastlane_core/ui/interface.rb:127:in `crash!': [!] Something went wrong when creating the new app - it's not listed in the apps list (FastlaneCore::Interface::FastlaneCrash)
When i login to the apple dev centre i can see the app
Name:xxx Prefix:VFX8SCY653 ID:xxx
and the id and name match
Configuration Files
Please copy the complete content of your Fastfile and any other configuration files you use below:
Fastfile:
produce(
username: USERNAME,
app_name: ENV["IPANAME"],
app_identifier: ENV["APP_IDENTIFIER"],
skip_itc: true
)
cert(development:true)
sigh(force: true,app_identifier: ENV["APP_IDENTIFIER"])
ipa({
configuration: Release,
scheme:xxx,
identity:"iPhone Distribution: xxx(xxx)"
})
Environment
fastlane version (run fastlane -v):
1.89.0
Do you use bundler to execute fastlane (i.e. bundle exec fastlane)?
nope
Do you use a Ruby environment manager (e.g. chruby, rbenv, rvm)?
rvm
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Comments: 16 (9 by maintainers)
I just pushed https://github.com/fastlane/fastlane/pull/5688 - this will be in the next release. Thanks everyone for your help 🚀
Thanks @KrauseFx, that was fast! Can’t wait for next release. So, for what I could get spaceship code and now confirmed on your fix, spaceship did return an application object (although incomplete per your comments prone to fail in next steps).
An correct me if I’m wrong: the new behaviour would retry 60 times with 10 seconds sleep between each retry (give or take 10 mins plus the request time)?
This is definitely something that should be fixed, as it’s one of the main uses of fastlane.