breautek commented on issue #1460: URL: https://github.com/apache/cordova-ios/issues/1460#issuecomment-2291296697
The `LD_RUNPATH_SEARCH_PATHS` are warnings not errors. But it means that the app is overriding the build setting that CocoaPods is using, and as a result if you have any pods installed that relies on setting a value in LD_RUNPATH_SEARCH_PATHS then the build might not work properly. It's a warning because it won't necessary cause a build failure but it does indicate a configuration problem that might cause build failures. If you're build is not failing it can likely be safely ignored. The warning is mostly caused by a plugin that is setting and overriding existing values of `LD_RUNPATH_SEARCH_PATHS`. > config file app/src/main/AndroidManifest.xml requested for changes not found at /Users/noeldacosta/code/SportchLegacyApp-CLMP/app/SportchLegacyApp/cordova/build/platforms/ios/app/src/main/AndroidManifest.xml, ignoring config file app/src/main/AndroidManifest.xml requested for changes not found at /Users/noeldacosta/code/SportchLegacyApp-CLMP/app/SportchLegacyApp/cordova/build/platforms/ios/app/src/main/AndroidManifest.xml, ignoring This is also a warning but indicates that a plugin (or your app's `config.xml`) contains a `edit-config` directive attempting to modify `AndroidManifest.xml` and is being used outside of their `<platform name="android">` block, which means it's running for all platforms, including the iOS platform. Obviously this isn't good because `AndroidManifest.xml` is an android file, it doesn't make sense to make modifications to it on the iOS platform. The file doesn't even exist on the iOS platform. Any platform-specific `<edit-config>` should be within their respective platform blocks. ```xml <widget ...> ... <!-- This is bad, it will run for every platform --> <edit-config file="AndroidManifest.xml" target="/manifest/uses-sdk" mode="merge"> ... </edit-config> <platform name="android"> <!-- This is good, the edit will only run on android platform --> <edit-config file="AndroidManifest.xml" target="/manifest/uses-sdk" mode="merge"> ... </edit-config> </platform> </widget> ``` I'm closing the issue because it doesn't describe any bugs with cordova-ios but hopefully the above answers your questions. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org