-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathComScore.podspec
More file actions
27 lines (25 loc) · 1.32 KB
/
ComScore.podspec
File metadata and controls
27 lines (25 loc) · 1.32 KB
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
Pod::Spec.new do |s|
s.name = 'ComScore'
s.module_name = 'ComScore'
s.version = '6.16.0'
s.summary = 'Official analytics library for iOS and tvOS from Comscore'
s.description = <<-DESC
This library is used to collect analytics from iOS and tvOS applications. The library supports apps developed in native Objective C or Swift with Apple Xcode or in other languages/tools which can include and use native Objective C libraries.
DESC
s.homepage = 'https://github.com/comscore/ComScore-iOS-watchOS-tvOS'
s.license = 'Custom'
s.author = { "Comscore" => "www.comscore.com" }
s.source = { :git => "https://github.com/comscore/ComScore-iOS-watchOS-tvOS.git", :tag => s.version.to_s }
s.platforms = { :ios => "15.6", :osx => "15.6", :tvos => "15.6" }
s.libraries = 'c++', 'z'
s.frameworks = 'SystemConfiguration'
s.prepare_command = <<-CMD
touch .pod
CMD
s.preserve_paths = 'ComScore/ComScore.xcframework'
s.resource_bundle = { 'SCORBundle' => '.pod' }
s.ios.deployment_target = '15.6'
s.ios.vendored_frameworks = 'ComScore/ComScore.xcframework'
s.tvos.deployment_target = '15.6'
s.tvos.vendored_frameworks = 'ComScore/ComScore.xcframework'
end