Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: adjust/ios_sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.32.0
Choose a base ref
...
head repository: adjust/ios_sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing 539 changed files with 11,829 additions and 21,789 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -34,3 +34,4 @@ uncrustify.cfg

#SPM
.swiftpm/
Package.resolved
65 changes: 29 additions & 36 deletions Adjust.podspec
Original file line number Diff line number Diff line change
@@ -1,42 +1,35 @@
Pod::Spec.new do |s|
s.name = "Adjust"
s.version = "4.32.0"
s.summary = "This is the iOS SDK of adjust. You can read more about it at http://adjust.com."
s.homepage = "https://github.com/adjust/ios_sdk"
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }
s.author = { "Adjust GmbH" => "sdk@adjust.com" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.32.0" }
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.framework = 'SystemConfiguration'
s.ios.weak_framework = 'AdSupport', 'iAd', 'CoreTelephony'
s.tvos.weak_framework = 'AdSupport'
s.requires_arc = true
s.default_subspec = 'Core'
s.pod_target_xcconfig = { 'BITCODE_GENERATION_MODE' => 'bitcode' }
s.name = "Adjust"
s.module_name = "AdjustSdk"
s.version = "5.0.1"
s.summary = "This is the iOS SDK of Adjust. You can read more about it at https://adjust.com."
s.homepage = "https://github.com/adjust/ios_sdk"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Adjust" => "sdk@adjust.com" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v#{s.version}" }
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.framework = 'SystemConfiguration'
s.ios.weak_framework = 'AdSupport'
s.tvos.weak_framework = 'AdSupport'
s.default_subspec = 'Adjust'

s.subspec 'Core' do |co|
co.source_files = 'Adjust/*.{h,m}', 'Adjust/ADJAdditions/*.{h,m}'
s.subspec 'Adjust' do |adj|
adj.source_files = 'Adjust/**/*.{h,m}', 'UmbrellaHeaders/sdk/*.{h,m}'
adj.public_header_files = 'Adjust/*.h', 'UmbrellaHeaders/sdk/*.h'
adj.exclude_files = 'Adjust/include/**/*.h'
adj.resource_bundle = {'Adjust' => ['Adjust/*.xcprivacy']}
adj.header_dir = 'AdjustSdk'
adj.dependency 'AdjustSignature', '~> 3.18'
end

s.subspec 'Sociomantic' do |sm|
sm.source_files = 'plugin/Sociomantic/*.{h,m}'
sm.dependency 'Adjust/Core'
end

s.subspec 'Criteo' do |cr|
cr.source_files = 'plugin/Criteo/*.{h,m}'
cr.dependency 'Adjust/Core'
end

s.subspec 'Trademob' do |tm|
tm.source_files = 'plugin/Trademob/*.{h,m}'
tm.dependency 'Adjust/Core'
end

s.subspec 'WebBridge' do |wb|
wb.source_files = 'AdjustBridge/*.{h,m}', 'AdjustBridge/WebViewJavascriptBridge/*.{h,m}'
wb.dependency 'Adjust/Core'
wb.ios.deployment_target = '9.0'
s.subspec 'AdjustWebBridge' do |awb|
awb.source_files = 'Adjust/**/*.{h,m}', 'AdjustBridge/*.{h,m}', 'UmbrellaHeaders/webbridge/*.{h,m}'
awb.public_header_files = 'Adjust/*.h', 'AdjustBridge/*.h', 'UmbrellaHeaders/webbridge/*.h'
awb.exclude_files = ['Adjust/include/**/*.h', 'AdjustBridge/include/**/*.h']
awb.resource_bundle = {'Adjust' => ['Adjust/*.xcprivacy']}
awb.header_dir = 'AdjustSdk'
awb.ios.deployment_target = '12.0'
awb.dependency 'AdjustSignature', '~> 3.18'
end
end
Loading