[ios] Unable to find included file "../plugins-release.xcconfig"
See original GitHub issueWhen upgrading to 2.4.X
cli, the plugins-release.xcconfig
file is never created in platforms/ios/
folder.
I’m thinking it has to do with these errors when trying to archive my project:
http://i.imgur.com/w0itMOc.png
Running pod install
does not resolve these errors.
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
0 - Stack Overflow
Xcode throws error while taking build archive for release"could not find included file '../plugins-release.xcconfig' in search paths (in target ) ...
Read more >Xcode 13 (xcodebuild) regression, … | Apple Developer Forums
Essentially, after updating to Xcode 13, xcodebuild (not Xcode IDE) is unable to find .xcconfig files we are including from an existing .xcconfig...
Read more >How to fix Flutter + Xcode Debug.xcconfig:2 - Phong Yew Tong
This is the full error on my Xcode. project/ios/Flutter/Debug.xcconfig:2: could not find included file 'Generated.xcconfig' in search paths ...
Read more >Cordova iOS 4.0.0
We are happy to announce that Cordova iOS 4.0.0 has been released.This is a major release, and deprecated APIs have been removed.
Read more >iOS : Error: Could not find included file 'Generated.xcconfig' in ...
iOS : Error: Could not find included file 'Generated. xcconfig ' in search paths (in target 'Runner') ... Your browser can't play this...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’ve also been seeing the same errors listed above whilst trying to produce an archive in xcode.
I finally got the app to Archive by doing the following:
${SRCROOT}/Pods
to thePODS_ROOT
Release
key underBuild Settings
- this was only set forDebug
and notRelease
in my workspace. This removes the pod errors but introduces may others.$ tns build ios --release
in TerminalI don’t know where in the process this is failing but I’ve tried many things to get the app to archive. The above steps are the only way I’ve managed to get an archive to succeed.
Edit: Validating the archive throws up a number of other errors. Back to square one.
@roblav96 We changed the build process in 2.4.0. Now plugins-release.xcconfig is created only when using the --release flag. Please, could you confirm that everything works as expected when using this flag?