-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTapstreamIOS.podspec
More file actions
24 lines (20 loc) · 908 Bytes
/
TapstreamIOS.podspec
File metadata and controls
24 lines (20 loc) · 908 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
Pod::Spec.new do |s|
s.name = 'TapstreamIOS'
s.version = '4.3.0'
s.summary = 'Tapstream marketing analytics SDK for iOS.'
s.homepage = 'https://tapstream.com/'
s.license = 'MIT'
s.author = { 'Tapstream' => 'support@tapstream.com' }
s.source = { :git => 'https://github.com/tapstream/tapstream-sdk-ios.git', :tag => 'v4.3.0-ios' }
s.ios.deployment_target = '15.0'
s.ios.frameworks = 'Foundation', 'UIKit', 'WebKit'
s.subspec 'Core' do |core|
core.source_files = ['tapstream-sdk-ios', 'tapstream-sdk-ios/ios-only']
end
s.subspec 'InAppLanders' do |ial|
ial.source_files = ['tapstream-sdk-ios', 'tapstream-sdk-ios/ios-only', 'tapstream-sdk-ios/in-app-landers']
end
s.subspec 'WordOfMouth' do |wom|
wom.source_files = ['tapstream-sdk-ios', 'tapstream-sdk-ios/ios-only', 'tapstream-sdk-ios/word-of-mouth']
end
end