react-native-nitro-sqlite icon indicating copy to clipboard operation
react-native-nitro-sqlite copied to clipboard

'ReactCommon/RCTTurboModule.h' file not found ( React-native-quick-sqlite )

Open DavidNguyen67 opened this issue 1 year ago • 1 comments

podfile

` require Pod::Executable.execute_command('node', ['-p', 'require.resolve( "react-native/scripts/react_native_pods.rb", {paths: [process.argv[1]]}, )', dir]).strip

platform :ios, min_ios_version_supported prepare_react_native_project! flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled

linkage = ENV['USE_FRAMEWORKS'] if linkage != nil Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green use_frameworks! :linkage => linkage.to_sym end

target 'newproject' do config = use_native_modules!

use_react_native!( :path => config[:reactNativePath], :hermes_enabled => false, :flipper_configuration => flipper_config, :app_path => "#{Pod::Config.instance.installation_root}/.." )

target 'newprojectTests' do inherit! :complete # Pods for testing end

post_install do |installer| react_native_post_install(installer) installer.pods_project.build_configurations.each do |config| config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64" end end end` Screenshot 2024-07-26 at 11 56 26

React Native: 0.73.6 Xcode: 0.15.3 react-native-quick-sqlite: 8.1.0

DavidNguyen67 avatar Jul 26 '24 04:07 DavidNguyen67