2
0
Fork 0

Ensure Countly does not use the IDFA.

This commit is contained in:
Maarten Billemont 2020-05-02 12:31:54 -04:00
parent d1104e4028
commit 3fa7e1e8a1
1 changed files with 11 additions and 0 deletions

View File

@ -28,3 +28,14 @@ target 'MasterPassword-macOS' do
pod 'KCOrderedAccessorFix'
pod 'JRSwizzle'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'Countly-iOS' || target.name == 'Countly-macOS'
target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)']
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'COUNTLY_EXCLUDE_IDFA=1'
end
end
end
end