react-native-share-menu
react-native-share-menu copied to clipboard
Cannot distribute iOS app, "ITMS-90424: Invalid Swift Support - The SwiftSupport folder is empty."
Because this uses Swift alongside ReactNative Objective-C project, Applle comes back with error "ITMS-90424: Invalid Swift Support - The SwiftSupport folder is empty." when you try to distribute your app.
Did anybody manage to solve this issue?
I am building both the project and the share extension with target iOS 13 and am using XCode 12.0.1
Update: This is what worked for me, although I am not sure if the app will pass Apple's review process yet:
- in the Xcode -> Organizer window, after you create an archive, right-click on your new archive
- press "Show in Finder"
- right click on the archive in Finder
- press "Show Package Contents"
- delete the 'SwiftSupport' folder
- Submit for distribution using the Organizer window
Reference: https://stackoverflow.com/questions/59728413/invalid-swift-support-the-swiftsupport-folder-is-empty
Thanks for sharing what worked for you @LPitonakova - it just helped me 👍
glad I could help @rdewolff !
Thanks @LPitonakova . Your steps work for me