forked from criteo/ios-publisher-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CriteoPublisherSdk.podspec
45 lines (36 loc) · 1.65 KB
/
CriteoPublisherSdk.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Pod::Spec.new do |spec|
spec.name = "CriteoPublisherSdk"
spec.version = "7.0.0"
spec.summary = "Criteo Publisher SDK for iOS"
spec.description = <<-DESC
Criteo Publisher SDK maximizes revenue by directly connecting your premium
inventory to our premium demand. That means you retain the full value of
every impression we buy.
DESC
spec.homepage = "https://github.com/criteo/ios-publisher-sdk/"
spec.documentation_url = "https://publisherdocs.criteotilt.com/app/ios/get-started/"
spec.license = { :type => "Apache 2.0", :file => "LICENSE" }
spec.author = { "Criteo" => "[email protected]" }
spec.platform = :ios
spec.ios.deployment_target = "13.0"
spec.swift_version = "5.0"
spec.static_framework = true # Required by Google Sdk
spec.source = {
:git => "https://github.com/criteo/ios-publisher-sdk.git",
:tag => spec.version
}
spec.requires_arc = true
spec.default_subspecs = "Sdk"
spec.dependency "CriteoMRAID", "~> 1.0.1"
spec.resource_bundles = {'CriteoPublisherSDK' => ['CriteoPublisherSDK/Sources/PrivacyInfo.xcprivacy']}
spec.subspec "Sdk" do |sdk|
sdk.source_files = "CriteoPublisherSdk/Sources/**/*.{h,m,swift}"
sdk.public_header_files = "CriteoPublisherSdk/Sources/Public/*.h"
sdk.weak_frameworks = "WebKit"
end
spec.subspec "GoogleAdapter" do |adapter|
adapter.source_files = "CriteoGoogleAdapter/Sources/**/*.{h,m}"
adapter.dependency "CriteoPublisherSdk/Sdk"
adapter.dependency "Google-Mobile-Ads-SDK", "~> 11.1.0"
end
end