Skip to main content

first time I am using  salesforce iOS SDK, I need to upgrade SDK in one the existing project. I did run the pod install, I am getting error 

'SalesforceSDKCommon/SFLogger.h' file not found in @interface SFSDKMobileSyncLogger : SFLogger class

 

#import <SalesforceSDKCommon/SFLogger.h>

 

Podfile : - 

platform :ios, '14.0'

install! 'cocoapods', :disable_input_output_paths => true

use_modular_headers!

target 'SwiftEventApp' do

    source 'https://github.com/forcedotcom/SalesforceMobileSDK-iOS-Specs.git' # need to be first

    source 'https://github.com/CocoaPods/Specs.git'

    # Specify each pre-release pod

#    pod 'SalesforceSDKCore', :path => '/Users/Proj/SalesforceMobileSDK-iOS/'

#    pod 'SalesforceAnalytics', :path => '/Users/Proj/SalesforceMobileSDK-iOS/'

#    pod 'SmartStore', :path => /Users/Proj/SalesforceMobileSDK-iOS/'

#    pod 'MobileSync', :path => '/Users/Proj/SalesforceMobileSDK-iOS/'

pod 'MobileSync'

pod 'SmartStore'

pod 'SalesforceSDKCore'

end

1 answer
0/9000