You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CocoaPods doesn't support symlinks with :file directive. When we run copy, we can resolve the symlink for CocoaPods and write the true file path to the Podfile.
- pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'- pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'+ pod 'Capacitor', :path => '../../../capacitor/ios'+ pod 'CapacitorCordova', :path => '../../../capacitor/ios'
This feature would mostly be for contributors to Capacitor who need to symlink dependencies in order to work on them, e.g. with the Capacitor TestApp.
The text was updated successfully, but these errors were encountered:
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Capacitor, please create a new issue and ensure the template is fully filled out.
CocoaPods doesn't support symlinks with
:file
directive. When we runcopy
, we can resolve the symlink for CocoaPods and write the true file path to the Podfile.This feature would mostly be for contributors to Capacitor who need to symlink dependencies in order to work on them, e.g. with the Capacitor TestApp.
The text was updated successfully, but these errors were encountered: