Skip to content

6.5.3 Add macro support to disable IDFA check

Compare
Choose a tag to compare
@austimkelly austimkelly released this 09 May 02:18
· 1335 commits to master since this release

Allow macro to be set (DISABLE_BVSDK_IDFA) in the core module to disable API calls to ASIdentifierManager

Disabling calls to ASIdentifierManager can be disabled by adding the following to your Podfile:

post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] = 'DISABLE_BVSDK_IDFA=true'
        end
    end
end