xcode reported Error Domain = PlugInKit Code = 13 Error

Call Safe uploaded to the server, the emergence of this mistake

[discovery] errors encountered while discovering extensions: Error Domain=PlugInKit Code=13 "query cancelled" UserInfo={NSLocalizedDescription=query cancelled}

Solution:

Open Product> Scheme> Edit Scheme
to add environment variables: OS_ACTIVITY_MODE value: disable


3077242-790c4d15ae79c170.png
Pictures .png

But this will be the emergence of new problems

All nslog! Gone!

How to do it, my side of the solution is to change the next pch the log:

#ifdef DEBUG
#define NSLog(format,...) printf("\n[%s] %s [第%d行] %s\n",__TIME__,__FUNCTION__,__LINE__,[[NSString stringWithFormat:format,## __VA_ARGS__] UTF8String]);
#else
#define NSLog(format, ...)
#endif

Like this Jiuhaola! ! !

Reference article: https://my.oschina.net/rainwz/blog/2218590

Reproduced in: https: //www.jianshu.com/p/bbcc13415ca5

Guess you like

Origin blog.csdn.net/weixin_33724059/article/details/91262078