Post

Replies

Boosts

Views

Activity

Reply to Could Not Find or Load Main Class - Unable to Upload Any App Updates...
5 months later and I still can't upload apps through Xcode... Transporter is still working as a backup method for now. Archive in Xcode - Distribute - Export Then add the IPA to Transporter. Tried using altool in terminal and it fails as well. I need to be able to send app updates through Xcode, but I guess since Apple won't help out here I'll be diving into this more myself this week. Will report back when I find something.
Mar ’21
Reply to Could Not Find or Load Main Class - Unable to Upload Any App Updates...
Found the issue and have a fix. Go to: /Applications/Xcode.app/Contents/SharedFrameworks/ContentDeliveryServices.framework/Versions/A/itms/bin You'll find: iTMSTransporter This is simply a build script so open it up in your favorite text editor (I like TextMate). Change this line: JVM_LIB_PATH="-Djava.library.path=${ESCAPED_WOA_TOP_LEVEL}/macOS/lib:${HOME}/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:." To this: JVM_LIB_PATH="-Djava.library.path=\"${ESCAPED_WOA_TOP_LEVEL}\"/macOS/lib:\"${HOME}\"/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:." Basically just add a few backslash-escaped quotes around ${ESCAPED_WOA_TOP_LEVEL} and ${HOME}. Enjoy successful Xcode uploads again!! :)
Mar ’21