Describe the bug
I was using the rollbar-ios sdk for years in my iOS project and now switched to the rollbar-apple sdk as the former was was deprecated. I use cocoapods as dependency manager for my project, so I use the new pod 'RollbarNotifier' now. Unfortunately with the new Rollbar sdk my project won't compile anymore.
It gives the error "Module 'RollbarCrash.RollbarCrashThread' requires feature 'objc'
To Reproduce
Steps to reproduce the behavior:
- Add
pod 'RollbarNotifier' to my podfile
- Install pods
- Import RollbarNotifier in my AppDelegate file
- Init Rollbar with Config in my AppDelegate
- Run the project
- See the error
"Module 'RollbarCrash.RollbarCrashThread' requires feature 'objc'
Expected behavior
The project shoud compile including the Rollbar library.
Screenshots

Rollbar-Apple SDK version: v3.3.3
Calling the SDK from (x-mark all suitable):
[] Objective-C
[x] Swift
[] Other:
Runtime environment (please complete the following information as applicable):
- Device: MacBook Pro
- OS: macOS
- OS version: Sequoia 15.2
- XCode 16.3.
- iOS Project in Swift 5
Podfile
platform :ios, '15.0'
use_modular_headers!
inhibit_all_warnings!
target "MyProject" do
pod 'RollbarNotifier'
pod ...
end