How to integrate MobileMessaging Pod without `use_frameworks!` - infobip/mobile-messaging-sdk-ios GitHub Wiki
Starting from 10.1.0 SDK version, MobileMessaging pod can be linked as static library using CocoaPods, to achieve it don't use use_frameworks! in the Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '15.0'
target 'YourProjectsMainTarget' do
pod 'MobileMessaging'
end
Could be useful to call pod deintegrate before pod update if previously MobileMessaging pod was linked with use_frameworks!, so that previous build settings and other configuration files will be cleaned up.
For Notification Service Extension integration, follow this guide. No special flags are needed — the extension module is a standalone pod that works the same regardless of linkage.