Skip to content

Commit

Permalink
Declare framework dependencies in podspec (#773)
Browse files Browse the repository at this point in the history
Users may want to build the pod with Clang modules disabled -fno-modules because they are using ccache which doesn't support -fmodules. When modules are disabled, auto-linking of framework modules is also disabled, so these dependencies need to be expressed explicitly.
  • Loading branch information
jgavris authored and fathyb committed Aug 24, 2018
1 parent 8eaf7cc commit 2f2d35b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Analytics.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '7.0'
s.tvos.deployment_target = '9.0'

s.framework = 'Security'
s.frameworks = 'CoreTelephony', 'Security', 'StoreKit', 'SystemConfiguration', 'UIKit'

s.source_files = [
'Analytics/Classes/**/*',
Expand Down

0 comments on commit 2f2d35b

Please sign in to comment.