forked from teads/TeadsSDK-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TeadsSDK.podspec
26 lines (23 loc) · 1.33 KB
/
TeadsSDK.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = "TeadsSDK"
s.version = '5.1.3'
s.summary = "Teads' iOS SDK"
s.module_name = s.name
s.description = <<-DESC
Teads allows you to integrate a single SDK into your app, and serve premium branded ads from Teads' SSP.
DESC
s.documentation_url = "https://support.teads.tv/support/solutions/articles/36000314785"
s.ios.deployment_target = "10.0"
s.homepage = "https://github.com/teads/TeadsSDK-iOS"
s.license = { :type => 'Copyright', :text => 'Copyright Teads 2021' }
s.author = { "Teads" => "[email protected]" }
s.source = { :git => 'https://github.com/teads/TeadsSDK-iOS.git', :tag => "#{s.version}" }
s.requires_arc = true
s.swift_versions = ['5.3']
s.frameworks = 'AdSupport', 'AVFoundation', 'CoreMedia', 'CoreTelephony', 'MediaPlayer', 'SystemConfiguration'
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
core.preserve_paths = "Frameworks/#{s.name}.xcframework", "Frameworks/OMSDK_Teadstv.xcframework"
core.vendored_frameworks = "Frameworks/#{s.name}.xcframework", "Frameworks/OMSDK_Teadstv.xcframework"
end
end