90714: Invalid binary;% xcrun dyld_info -objc ... interface(null)

90714: Invalid binary. The app contains one or more corrupted binaries. Please rebuild the app and resubmit. Xcode Version 16.4 (16F6), minimum operating system iOS 17.6. 按照给出的终端命令,执行之后给出如下输出。但是我并不知道该如何进行下一步操作,代码中全局搜索也没有搜到类似@interface AUChangeSkinShell的代码或者framework,烦请您指导。

According to the given terminal command, the following output is given after execution. But I don't know how to proceed with the next steps regarding this information, We did not find any code or framework similar to '@ interface AUChangeSkinShell' in the global search of the code. Please guide us.

% xcrun dyld_info -objc /Library/Developer/Xcode/Playload/EBCampus-ios.app/EBCampus-ios | grep "(null)" @interface AUUtils : (null) @interface (null) : (null) ... ... @interface (null) : (null) @interface (null) : (null) @interface AUChangeSkinShell : (null) @interface SSPBaseFormatMethod : (null)

It would be helpful to format the output of that command using Markdown backticks so it's a bit clearer to read here.

Based on how I'm interpreting the unformatted output, you will need to figure out where AUChangeSkinShell is coming from in your app, and make sure that library is built with a recent version of Xcode. If that's not a class you directly have in your codebase, you may want to check for it in any third-party libraries your app depends on. You can also use grep to search your codebase (and third-party dependencies) for that string to see where it turns up.

— Ed Ford,  DTS Engineer

90714: Invalid binary;% xcrun dyld_info -objc ... interface(null)
 
 
Q