-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtelemetrydecksdk.podspec
More file actions
25 lines (24 loc) · 1.19 KB
/
telemetrydecksdk.podspec
File metadata and controls
25 lines (24 loc) · 1.19 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
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
# Run `pod lib lint telemetrydecksdk.podspec` to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'telemetrydecksdk'
s.version = '1.0.0'
s.summary = 'Flutter SDK for TelemetryDeck, a privacy-conscious analytics service for apps and websites.'
s.description = <<-DESC
Flutter SDK for TelemetryDeck, a privacy-conscious analytics service for apps and websites.
DESC
s.homepage = 'https://telemetrydeck.com'
s.license = { :file => '../LICENSE' }
s.author = { 'TelemetryDeck' => 'info@telemetrydeck.com' }
s.source = { :path => '.' }
s.source_files = 'telemetrydecksdk/Sources/telemetrydecksdk/**/*.swift'
s.resource_bundles = {'telemetrydecksdk_privacy' => ['telemetrydecksdk/Sources/telemetrydecksdk/PrivacyInfo.xcprivacy']}
s.dependency 'Flutter'
s.dependency 'TelemetryDeck', '~> 2.9.1'
s.platform = :ios, '12.0'
# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
s.swift_version = '5.0'
end