-
Notifications
You must be signed in to change notification settings - Fork 244
Description
Hi everyone,
I’ve been using Mixpanel in my iOS project for a while now, alongside the Salesforce Mobile SDK. However, since upgrading to Xcode 26, We’ve been encountering an issue related to SQLite3 mapping between Mixpanel and SalesforceSDK.
Issue Screenshot:
Here is the relevant portion of my Podfile setup:
platform :ios, '17.0'
def required_pods
source 'https://cdn.cocoapods.org/'
source 'https://github.com/forcedotcom/SalesforceMobileSDK-iOS-Specs.git'
use_frameworks!
pod 'SalesforceAnalytics', '13.0.2'
pod 'MobileSync', '13.0.2'
pod 'SalesforceSDKCore', '13.0.2'
pod 'SalesforceSDKCommon', '13.0.2'
pod 'SmartStore', '13.0.2'
pod 'Mixpanel-swift'
end
target 'Test' do
required_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '17.0'
end
end
end
Has anyone else experienced similar issues or found a workaround? Any insights would be greatly appreciated.
Thanks in advance!