将应用上传到应用商店时,我们在应用加载程序日志中收到以下警告。
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)."
感谢您对此问题的任何帮助。
Best Answer-推荐答案 strong>
这很可能是由于您的应用依赖项中的 BITCODE 设置不同。例如。您的应用已将 ENABLE_BITCODE 设置为 NO ,但您的依赖项之一设置为 YES 。
更多详情请引用这个答案:Xcode - Error ITMS-90635 - Invalid Mach-O in bundle - submitting to App store
关于ios - Xcode - 警告 ITMS-90735 - 无效的可执行部分 - 提交到 App Store,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/51740195/
|