xcode 15 issue : Driver threw unknown argument: '-bvvutkjqcsvcmlfdhxkrjtgqdzeg/Build/Intermediates.noindex/' without emitting errors. can not run, working fine on xcode 14

My project was working fine on xcode 14 for ios 16 simulators and real devices with all setup and pods, recently i updated system for xcode 15, and sicne then on build getting this error for simulator and real devices -

Driver threw unknown argument: '-bvvutkjqcsvcmlfdhxkrjtgqdzeg/Build/Intermediates.noindex/' without emitting errors.
  • i did everyting - clean ,deep clean, restart, update cocoapod, all pods update, deintegrate - install again, delete cache, delete derived data

btw - this- bvvutkjqcsvcmlfdhxkrjtgqdzeg/Build/Intermediates.noindex/ is a file getting generated in derived data -

and in log getting this also -

error: Driver threw unknown argument: '-bvvutkjqcsvcmlfdhxkrjtgqdzeg/Build/Intermediates.noindex/' without emitting errors. (in target 'fabfinance' from project ' ')

  • this is my pod file -
# Uncomment the next line to define a global platform for your project
# platform :ios, '13.0'

target 'fabfinance' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for fabfinance
  pod 'Alamofire'
  pod 'SwiftyJSON'
  pod 'PopupDialog'
  pod 'JMImageCache'
  #pod 'Firebase/Analytics'
  #pod 'Firebase/Messaging'
  #pod 'Firebase/Crashlytics'
  #pod 'Firebase/Core'
  #pod 'Firebase/Auth'
  pod 'SOTabBar'
  pod 'MaterialComponents'
  pod 'IQKeyboardManagerSwift'
  pod 'DropDown'
  pod 'DLRadioButton', '~> 1.4'
  pod 'ADCountryPicker', '~> 2.1.0'
  pod 'MDFInternationalization'
  pod 'SDWebImage'
  pod 'ProgressHUD'
  pod 'DatePickerDialog'
  pod 'PhoneNumberKit'
  pod 'Charts'
  
  target 'fabfinanceTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'fabfinanceUITests' do
    # Pods for testing
  end

  
end

post_install do |installer|
     installer.generated_projects.each do |project|
           project.targets.each do |target|
               target.build_configurations.each do |config|
                   config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
                end
           end
    end
 end