forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirebaseDynamicLinks.podspec
49 lines (42 loc) · 1.94 KB
/
FirebaseDynamicLinks.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
46
47
48
49
Pod::Spec.new do |s|
s.name = 'FirebaseDynamicLinks'
s.version = '4.0.6'
s.summary = 'Firebase DynamicLinks for iOS'
s.description = <<-DESC
Firebase Dynamic Links are deep links that enhance user experience and increase engagement by retaining context post-install, across platforms.
DESC
s.homepage = 'https://firebase.google.com'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.authors = 'Google, Inc.'
s.source = {
:git => 'https://github.com/firebase/firebase-ios-sdk.git',
:tag => 'DynamicLinks-' + s.version.to_s
}
s.social_media_url = 'https://twitter.com/Firebase'
s.ios.deployment_target = '8.0'
s.cocoapods_version = '>= 1.4.0'
s.static_framework = true
s.prefix_header_file = false
s.source_files = 'Firebase/DynamicLinks/**/*.[mh]'
s.public_header_files = 'Firebase/DynamicLinks/Public/*.h'
s.frameworks = 'AssetsLibrary', 'MessageUI', 'QuartzCore'
s.weak_framework = 'WebKit'
s.dependency 'FirebaseCore', '~> 6.2'
s.dependency 'FirebaseAnalyticsInterop', '~> 1.3'
s.pod_target_xcconfig = {
'GCC_C_LANGUAGE_STANDARD' => 'c99',
'GCC_PREPROCESSOR_DEFINITIONS' => 'FIRDynamicLinks_VERSION=' + s.version.to_s +
' FIRDynamicLinks3P GIN_SCION_LOGGING',
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"/Firebase'
}
s.test_spec 'unit' do |unit_tests|
unit_tests.source_files = 'Example/DynamicLinks/Tests/*.[mh]'
unit_tests.requires_app_host = true
unit_tests.resources = 'Example/DynamicLinks/App/GoogleService-Info.plist',
# Supply plist for custom domain testing.
'Example/DynamicLinks/App/DL-Info.plist'
unit_tests.dependency 'OCMock'
unit_tests.dependency 'GoogleUtilities/MethodSwizzler', '~> 6.2'
unit_tests.dependency 'GoogleUtilities/SwizzlerTestHelpers', '~> 6.2'
end
end