freddi(Yuki Aki)

Results 25 comments of freddi(Yuki Aki)

@giginet I fixed by resolving variable here to not make resolve twice. Please check it https://github.com/yonaskolb/XcodeGen/blob/0cfb122a0d35ffeb94a42c247ff470e75e0cb8ce/Sources/ProjectSpec/SpecFile.swift#L72

Hello, I did some workaround and investigation. I wrote about them ## Workaround - Before calling `pilot` action, I called `xcode-select("/Application/Xcode13.4.1.app")` and it works. - NOTE: Please replace "/Application/Xcode13.4.1.app" with...

@joshdholtz I also working for fixing it. i'm curious why fastlane call java runtime inside itsm instead of `/Applications/Transporter.app/Contents/itms/bin/iTMSTransporter` (or `/Applications/Xcode.app/Contents/SharedFrameworks/ContentDeliveryServices.framework/itms/bin/iTMSTransporter`). Do you know why? https://github.com/fastlane/fastlane/blob/master/fastlane_core/lib/fastlane_core/itunes_transporter.rb#L300

FYI: `/Applications/Transporter.app/Contents/itms/bin/iTMSTransporter` (it is shell script) is doing almost same things with https://github.com/fastlane/fastlane/blob/master/fastlane_core/lib/fastlane_core/itunes_transporter.rb#L300 like call `java` and passing java's argument.

Hello. I've got answer from Apple via Feedback. ITMSTransporter is officially removed from Xcode 14 beta and now it is only available on Transporter.app. Or apple recommends to use atool...

I success to fix it when using iTMSTransporter.app. please wait a moment to open PR

I found `FASTLANE_ITUNES_TRANSPORTER_USE_SHELL_SCRIPT` to make success upload ipa to AppStore with Transporter.app ```shell export FASTLANE_ITUNES_TRANSPORTER_USE_SHELL_SCRIPT=1 export FASTLANE_ITUNES_TRANSPORTER_PATH=/Applications/Transporter.app/Contents/itms bundle exec fastlane {your_action} ``` Please set FASTLANE_ITUNES_TRANSPORTER_USE_SHELL_SCRIPT as 1 if you want...