Search code examples
iosflutterfirebase

Flutter DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead


I am getting this error in flutter ios!! Firebase: DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead

I tried every solution flutter clean , pub get but did not help me!! Please suggest me proper solution!!


Solution

  • This help me to resolve the issue Flutter or React Native Xcode 15 Error (Xcode): DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS

    flutter clean -> pod deintagrate -> flutter pub get

    Then I add in podfile

    post_install do |installer|
      installer.pods_project.targets.each do |target|
         flutter_additional_ios_build_settings(target)
          target.build_configurations.each do |config|
            xcconfig_path = config.base_configuration_reference.real_path
            xcconfig = File.read(xcconfig_path)
            xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
            File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
          end
      end
    end
    

    Run a pod update