I am getting these errors while building my application.
It is flutter application and I am trying to build ios application with XCode Cloud
Could not find included file 'Generated.xcconfig' in search paths Release.xcconfig:2
Unable to load contents of file list: '/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-output-files.xcfilelist'
Unable to load contents of file list: '/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-input-files.xcfilelist'
This is my release.xconfig file
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"`
#include "Generated.xcconfig"
I did try pod disintegrate and pod update but it didn't work. I expected working build on an application.
Related
I connected the xcode cloud to my git repo. The repo that I can build the iPhone app successfully, can't build and has issues.
My build fails by 5 errors:
Unable to load contents of file list: '/Target Support Files/Pods-chemnitz/Pods-chemnitz-resources-Release-output-files.xcfilelist'
Unable to load contents of file list: '/Target Support Files/Pods-chemnitz/Pods-chemnitz-resources-Release-input-files.xcfilelist'
Unable to load contents of file list: '/Target Support Files/Pods-chemnitz/Pods-chemnitz-frameworks-Release-input-files.xcfilelist'
Unable to load contents of file list: '/Target Support Files/Pods-chemnitz/Pods-chemnitz-frameworks-Release-output-files.xcfilelist'
unable to open configuration settings file
and then I tried to add pods-chemnitz folder to my git. So these problems are gone but a new issue comes up.
The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.
I already updated the cocoapods and pod. That didn't work. any idea how can I fix this?
i'm new user with Xcode cloud. i'm begin with it today after connect with Xcode Cloud and build i'm get error like this:
Unable to load contents of file list: '/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-output-files.xcfilelist'
Unable to load contents of file list: '/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-input-files.xcfilelist'
and
could not find included file 'Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig' in search paths
Release.xcconfig:2
could not find included file 'Generated.xcconfig' in search paths
Release.xcconfig:3
in my local. everything work well.
When I try to build my project in Xcode 12.4, it gives me the following issues:
Unable to read contents of XCFileList '/Target Support Files/Pods-recipeat/Pods-recipeat-frameworks-Debug-output-files.xcfilelist'
Unable to load contents of file list: '/Target Support Files/Pods-recipeat/Pods-recipeat-frameworks-Debug-input-files.xcfilelist'
Unable to load contents of file list: '/Target Support Files/Pods-recipeat/Pods-recipeat-frameworks-Debug-output-files.xcfilelist'
(Recipeat is the name of my project)
The first one is a warning and the second and third are errors.
I have recently tried installing firebase without cocoapods because I was having issues installing the latest version of cocoapods. The tutorial I have been using can be found here: https://firebase.google.com/docs/ios/setup#frameworks
Here is the readme file so you do not have to download the entire framework SDK zip file:
https://gofile.io/d/vvBdDz
Following the instructions in the readme file, I have added the following to my project:
framework files, firebase.h and module.modulemap files (image)
I have also made changes in my build settings:
Other Linker Flags⠀⠀⠀⠀⠀⠀⠀⠀⠀-ObjC
User Header Search Paths⠀⠀⠀⠀⠀⠀⠀⠀⠀$(SRCROOT)
However, when trying to run the project, it fails to build.
Why am I getting these errors? And how can I fix them?
This is my first time installing firebase so it might be that I have forgotten to do something simple - please forgive me.
Thank you already for your help!
I'm working on the flutter-webrtc plugin for iOS. Previously, the plugin use the prebuilt cocoapods dependency. But, in the WebRTC M80 Release Notes they state they are going to be deprecating the mobile libraries.
To stay up to date with the latest iOS native WebRTC bugfixes and features, we now need to build from source.
I've built from source and I was testing it with WebRTC's AppRTCMobile example app and it is working over there. Now I am trying to import the WebRTC.framework into the flutter plugin and I'm having trouble.
There is no flutter documentation on this, but I followed guidance from this github issue. I've copied the binary built from source into the plugin ios directory and modified the flutter_webrtc.podspec to include the framework, but I'm getting the error:
Xcode's output:
↳
In file included from /Users/corey/Workspace/flutter/flutter-webrtc/ios/Classes/FlutterWebRTCPlugin.m:1:
/Users/corey/Workspace/flutter/flutter-webrtc/ios/Classes/FlutterWebRTCPlugin.h:4:9: fatal error: 'WebRTC/RTCDataChannel.h' file not found
#import <WebRTC/RTCDataChannel.h>
^~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
In file included from /Users/corey/Workspace/flutter/flutter-webrtc/ios/Classes/FlutterRTCVideoRenderer.m:1:
In file included from /Users/corey/Workspace/flutter/flutter-webrtc/ios/Classes/FlutterRTCVideoRenderer.h:1:
/Users/corey/Workspace/flutter/flutter-webrtc/ios/Classes/FlutterWebRTCPlugin.h:4:9: fatal error: 'WebRTC/RTCDataChannel.h' file not found
#import <WebRTC/RTCDataChannel.h>
^~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
note: Using new build system
note: Planning build
note: Constructing build description
I'm really new to flutter plugin development so I'm not sure if I'm doing this correctly. Any tips would be very appreciated!
After adding the binary to the plugin ios directory, I needed to manually go into my app's ios directory (the app depending on the plugin) and manually run pod install && pod update.
After that, the plugin import errors were fixed and I'm now using WebRTC built from source in the flutter-webrtc plugin :)
I download Cocos2DSimpleGame from Apportable Sample app page.when i am trying to compile through CLI it says
mac6:Cocos2DSimpleGame Stalin$ apportable load
Building with TARGET_ARCH_ABI:armeabi ARM_NEON:False
Building to /Users/Stalin/.apportable/SDK/Build/android-armeabi-debug
Error: Unable to find Xcode project file. /Applications/Cocos2DSimpleGame3-master/Cocos2DSimpleGame
apportable load should be run from the same directory that include the .xcodeproj file for the iOS version of the project.