-
Notifications
You must be signed in to change notification settings - Fork 7
/
AppMetricaWebKit.podspec
29 lines (21 loc) · 1 KB
/
AppMetricaWebKit.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
Pod::Spec.new do |s|
s.name = "AppMetricaWebKit"
s.version = '5.10.0'
s.summary = "Enriches web analytics by providing a robust interface for capturing and reporting JavaScript events directly to AppMetrica."
s.homepage = 'https://appmetrica.io'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "AppMetrica" => "admin@appmetrica.io" }
s.source = { :git => "https://github.com/appmetrica/appmetrica-sdk-ios.git", :tag=>s.version.to_s }
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.swift_versions = '5.7'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.frameworks = 'Foundation'
s.dependency 'AppMetricaCore', '= 5.10.0'
s.dependency 'AppMetricaCoreUtils', '= 5.10.0'
s.dependency 'AppMetricaLog', '= 5.10.0'
s.header_dir = s.name
s.source_files = "#{s.name}/Sources/**/*.{h,m}"
s.public_header_files = "#{s.name}/Sources/include/**/*.h"
s.resource_bundles = { s.name => "#{s.name}/Sources/Resources/PrivacyInfo.xcprivacy" }
end