Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion AppsFlyerFramework.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.visionos.deployment_target = '1.0'

s.ios.frameworks = 'Security', 'SystemConfiguration', 'CoreTelephony'
s.osx.frameworks = 'Security'
Expand All @@ -30,6 +31,8 @@ Pod::Spec.new do |s|
s.subspec 'Main' do |ss|
ss.ios.vendored_frameworks = 'binaries/xcframework/full/AppsFlyerLib.xcframework'

ss.visionos.vendored_frameworks = 'binaries/xcframework/full/AppsFlyerLib.xcframework'

ss.tvos.vendored_frameworks = 'binaries/xcframework/full/AppsFlyerLib.xcframework'

ss.osx.vendored_frameworks = 'binaries/xcframework/full/AppsFlyerLib.xcframework'
Expand All @@ -42,13 +45,17 @@ Pod::Spec.new do |s|

ss.ios.vendored_frameworks = 'binaries/ios/AppsFlyerLib.framework'

ss.visionos.vendored_frameworks = 'binaries/visionos/AppsFlyerLib.framework'

ss.tvos.vendored_frameworks = 'binaries/tv/AppsFlyerLib.framework'

ss.osx.vendored_frameworks = 'binaries/xcframework/full/AppsFlyerLib.xcframework'
end
s.subspec 'Strict' do |ss|
ss.ios.vendored_frameworks = 'binaries/xcframework/strict/AppsFlyerLib.xcframework'

ss.visionos.vendored_frameworks = 'binaries/xcframework/strict/AppsFlyerLib.xcframework'

ss.tvos.vendored_frameworks = 'binaries/xcframework/strict/AppsFlyerLib.xcframework'

ss.osx.vendored_frameworks = 'binaries/xcframework/strict/AppsFlyerLib.xcframework'
Expand All @@ -57,8 +64,10 @@ Pod::Spec.new do |s|
s.subspec 'Dynamic' do |ss|
ss.ios.vendored_frameworks = 'binaries/xcframework/dynamic/AppsFlyerLib.xcframework'

ss.visionos.vendored_frameworks = 'binaries/xcframework/dynamic/AppsFlyerLib.xcframework'

ss.tvos.vendored_frameworks = 'binaries/xcframework/dynamic/AppsFlyerLib.xcframework'
# Dynamic framework does not support pure OSX yet
ss.osx.vendored_frameworks = 'binaries/xcframework/full/AppsFlyerLib.xcframework'
end
end
end