I recently added a supported library to Swift in my project, and currently my main Objective-C project language, and because of this, it shows some warning about dependencies in my project, as shown below:
warning: using "ALWAYS_SEARCH_USER_PATHS = YES" when creating targets that define modules ("DEFINES_MODULE = YES") may not work. Migration to use "ALWAYS_SEARCH_USER_PATHS = NO".
Does anyone have any ideas how I can solve this problem?
As a self-learning warning that you need to set the flag 'ALWAYS_SEARCH_USER_PATHS = NO' , this warning will be allowed.
But my question is: does this affect any existing functionality or does the problem connect to the card by doing this?
or is it safe to do as indicated in this waring?
Thanks at Advance.
source share