2

enter image description here

when uploading app to appstore, we're getting below warning in apploader log.

WARN: WARNING ITMS-90735: "Invalid Executable Section. As of October 1, 2018 apps must no longer contain executables that have a __DATA,__dyld section. The Mach-O file in bundle with identifier 'com.myapp' has the invalid section (__DATA,__dyld)."

Any help on this issue is appreciated.

Dax
  • 6,908
  • 5
  • 23
  • 30

1 Answers1

2

This is high likely due to different BITCODE settings in your app dependencies. E.g. your app has ENABLE_BITCODE set to NO but one of your dependencies is set to YES.

Please refer to this answer for more details: Xcode - Error ITMS-90635 - Invalid Mach-O in bundle - submitting to App store

matsoftware
  • 766
  • 6
  • 12