Issues while adding VisionOS support to pre existing IOS App that uses swift UI and cocoapods

I am attempting to integrate VisionOS support into my existing iOS app, which utilizes Swift UI and CocoaPods. However, upon adding VisionOS as a supported platform and attempting to run the app, I encounter two errors:

  1. "'jot/jot.h' file not found" at "/Users/xxxxxx/Desktop/IOS_DEVELOPMENT/iOS/xxxxxxxxx/xxxxxxxxx-Bridging-Header.h:17:9".
  2. "Failed to emit precompiled header" at "/Users/xxxxxx/Library/Developer/Xcode/DerivedData/xxxxxxxxx-bnhvaxypgfhmvqgklzjdnxxbrdhu/Build/Intermediates.noindex/PrecompiledHeaders/xxxxxxxxx-Bridging-Header-swift_6TTOG1OAZB5F-clang_21TRHDW14EDOZ.pch" for bridging header "/Users/xxxxxxxx/Desktop/IOS_DEVELOPMENT/iOS/xxxxxxx/xxxxxxxx-Bridging-Header.h".

I'm seeking assistance with resolving these errors. Below is my Podfile configuration:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '15.0'

target 'xxxxxxxxxx' do
    use_frameworks!
    pod 'RealmSwift'
    pod 'JGProgressHUD'
    pod 'BadgeLabel'
    pod 'jot'
    pod 'MaterialComponents/Chips'
    pod 'GoogleMaps'
    pod 'Firebase/Crashlytics'
    pod 'Firebase/Analytics' # Firebase pod for Google Analytics
    # Add pods for any other desired Firebase products
    # https://firebase.google.com/docs/ios/setup#available-pods
end

post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
        end
    end
end

Any assistance in resolving these errors would be greatly appreciated.