-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathAppMetricaScreenshot.podspec
More file actions
29 lines (21 loc) · 971 Bytes
/
AppMetricaScreenshot.podspec
File metadata and controls
29 lines (21 loc) · 971 Bytes
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 = "AppMetricaScreenshot"
s.version = '6.2.0'
s.summary = "Provides a comprehensive set of diverse utilities"
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 = '13.0'
s.tvos.deployment_target = '13.0'
s.swift_versions = '5.9.0'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.frameworks = 'Foundation'
s.dependency 'AppMetricaCore', '= 6.2.0'
s.dependency 'AppMetricaCoreExtension', '= 6.2.0'
s.dependency 'AppMetricaStorageUtils', '= 6.2.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