App does not build after eject to bare workflow

Getting the following error. Has anyone faced this previously ?

The following build commands failed:
CompileC /Users/raheelshah/Library/Developer/Xcode/DerivedData/Boro-gqjhanhfybjtfjdsibqezlwyqajb/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperRSocketResponder.o /Users/raheelshah/Boro-Experiments/Boro\ RN\ Apollo/Boro\ App/ios/Pods/Flipper/xplat/Flipper/FlipperRSocketResponder.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler

Expo CLI 4.1.6 environment info:
System:
OS: macOS 11.1
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 10.16.0 - /usr/local/bin/node
Yarn: 1.17.3 - /usr/local/bin/yarn
npm: 6.13.1 - /usr/local/bin/npm
Watchman: 4.9.0 - /opt/local/bin/watchman
Managers:
CocoaPods: 1.10.1 - /Users/raheelshah/.rvm/gems/ruby-2.6.3/bin/pod
SDKs:
iOS SDK:
Platforms: iOS 14.2, DriverKit 20.0, macOS 11.0, tvOS 14.2, watchOS 7.1
IDEs:
Android Studio: 4.1 AI-201.8743.12.41.7042882
Xcode: 12.2/12B45b - /usr/bin/xcodebuild
npmPackages:
expo: ^38.0.0 => 38.0.9
react: ~16.11.0 => 16.11.0
react-dom: 16.11.0 => 16.11.0
react-native: ~0.62.2 => 0.62.2
react-native-web: ~0.11.7 => 0.11.7
npmGlobalPackages:
expo-cli: 4.1.6
Expo Workflow: bare

Any luck with this @boro-tech ? Seeing the same issue on my EAS build.

Commented the below in pod file

add_flipper_pods!

post_install do |installer|

flipper_post_install(installer)

end

and also commented flipper in AppDelegate
// #if DEBUG

// #import <FlipperKit/FlipperClient.h>

// #import <FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h>

// #import <FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h>

// #import <FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h>

// #import <SKIOSNetworkPlugin/SKIOSNetworkAdapter.h>

// #import <FlipperKitReactPlugin/FlipperKitReactPlugin.h>

// static void InitializeFlipper(UIApplication *application) {

// FlipperClient *client = [FlipperClient sharedClient];

// SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];

// [client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]];

// [client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]];

// [client addPlugin:[FlipperKitReactPlugin new]];

// [client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];

// [client start];

// }

// #endif

and
// #if DEBUG
// InitializeFlipper(application);
// #endif

Not sure if this is a solution but it worked to ruin the build atleast in Simulator.

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.