I simply trying to upload build with fastlane to itunesconnect, but I have an error:
Could not find transporter at /Applications/Xcode.app/Contents/Developer/. Please make sure you set the correct path to your Xcode installation.
This is how it looks in console (click for larger images):
and in code:
3
Answers
Update Fastlane to 2.210.0, they recently fixed this by migrating from Transporter to altool.
After updating fastlane to 2.210.0 facing issue Cannot find .xcresult in derived data which is needed to determine test results. This is an issue within scan. File an issue on GitHub or try setting option
result_bundle: true
Updating Fastlane is not necessary needed to fix the issue. If you upgraded to Xcode 14, iTMSTransporter is no longer included in Xcode 14.0, you can manually download and install it here: https://help.apple.com/itc/transporteruserguide/#/apdA3ae5a8b0?sub=apdA687d545d
Run the build again and it will work.