After upgrading Xcode 15 beta 5, cannot build project.
Error being displayed
Firebase 1 issue
DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead
FirebaseAnalytics 1 issue
DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead
Tried to deintegrate, reinstall and updating pods, issues doesn’t resolves.
Flutter V. 3.10.6
Is there any way to solve this issue?
3
Answers
it seem Cocoapods issue and it resolved,
just wait for next public release
https://github.com/CocoaPods/CocoaPods/pull/12009
With Cocoapods old version, you can fix this issue by edit Podfile like following
I solved modifying the pod_install in this way:
end
I kept this line of code:
because without it I have found other problems like:
Until the fix has been published, just open a Terminal window and run
After that the error is gone and won’t return unless you run
pod update
orpod install
again, in which case you must run that command again.