Skip to content

Commit

Permalink
Adding missing framework and enabling wb only for iOS platform
Browse files Browse the repository at this point in the history
  • Loading branch information
uerceg committed Aug 15, 2018
1 parent 907cd52 commit 76a2f90
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Adjust.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '6.0'
s.tvos.deployment_target = '9.0'
s.framework = 'SystemConfiguration'
s.ios.weak_framework = 'AdSupport', 'iAd'
s.ios.weak_framework = 'AdSupport', 'iAd', 'CoreTelephony'
s.tvos.weak_framework = 'AdSupport'
s.requires_arc = true
s.default_subspec = 'Core'
Expand All @@ -33,8 +33,9 @@ Pod::Spec.new do |s|
tm.dependency 'Adjust/Core'
end

s.subspec 'WebBridge' do |wvjb|
wvjb.source_files = 'AdjustBridge/*.{h,m}', 'AdjustBridge/WebViewJavascriptBridge/*.{h,m}'
wvjb.dependency 'Adjust/Core'
s.subspec 'WebBridge' do |wb|
wb.source_files = 'AdjustBridge/*.{h,m}', 'AdjustBridge/WebViewJavascriptBridge/*.{h,m}'
wb.dependency 'Adjust/Core'
wb.ios.deployment_target = '6.0'
end
end

0 comments on commit 76a2f90

Please sign in to comment.