We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I did the manual install but getting this error that i'm not too sure about, here is my podfile.
platform :ios, '10.0' target 'commonwealth-walkway' do pod 'ExpoKit', :git => "http://github.com/expo/expo.git", :tag => "ios/2.12.4", :subspecs => [ "Core" ], :inhibit_warnings => true # Install unimodules require_relative '../node_modules/react-native-unimodules/cocoapods.rb' use_unimodules!( modules_paths: ['../node_modules'], exclude: [ 'expo-bluetooth', 'expo-in-app-purchases', 'expo-payments-stripe', ], ) pod 'React', :path => "../node_modules/react-native", :inhibit_warnings => true, :subspecs => [ "Core", "ART", "RCTActionSheet", "RCTAnimation", "RCTCameraRoll", "RCTGeolocation", "RCTImage", "RCTNetwork", "RCTText", "RCTVibration", "RCTWebSocket", "DevSupport", "CxxBridge" ] pod 'yoga', :path => "../node_modules/react-native/ReactCommon/yoga", :inhibit_warnings => true pod 'DoubleConversion', :podspec => "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec", :inhibit_warnings => true pod 'Folly', :podspec => "../node_modules/react-native/third-party-podspecs/Folly.podspec", :inhibit_warnings => true pod 'glog', :podspec => "../node_modules/react-native/third-party-podspecs/glog.podspec", :inhibit_warnings => true post_install do |installer| installer.pods_project.main_group.tab_width = '2'; installer.pods_project.main_group.indent_width = '2'; installer.target_installation_results.pod_target_installation_results .each do |pod_name, target_installation_result| if pod_name == 'ExpoKit' target_installation_result.native_target.build_configurations.each do |config| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)'] config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'EX_DETACHED=1' # Enable Google Maps support config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'HAVE_GOOGLE_MAPS=1' config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'HAVE_GOOGLE_MAPS_UTILS=1' end end target_installation_result.native_target.build_configurations.each do |config| config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0' end # Can't specify this in the React podspec because we need to use those podspecs for detached # projects which don't reference ExponentCPP. if pod_name.start_with?('React') target_installation_result.native_target.build_configurations.each do |config| config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0' config.build_settings['HEADER_SEARCH_PATHS'] ||= ['$(inherited)'] end end # Build React Native with RCT_DEV enabled and RCT_ENABLE_INSPECTOR and # RCT_ENABLE_PACKAGER_CONNECTION disabled next unless pod_name == 'React' target_installation_result.native_target.build_configurations.each do |config| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)'] config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_DEV=1' config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_ENABLE_INSPECTOR=0' config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'ENABLE_PACKAGER_CONNECTION=0' end end end end
The text was updated successfully, but these errors were encountered:
Any solution for this one? I am also facing the same issue in React Native version 0.60.+.
Sorry, something went wrong.
I faced the same issue. Did anyone find any solution?
No branches or pull requests
Hello, I did the manual install but getting this error that i'm not too sure about, here is my podfile.
The text was updated successfully, but these errors were encountered: