6.5.3 Add macro support to disable IDFA check
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