forked from emartech/ios-emarsys-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EmarsysSDK.podspec
35 lines (35 loc) · 1.41 KB
/
EmarsysSDK.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
Pod::Spec.new do |spec|
spec.name = 'EmarsysSDK'
spec.version = '1.99.0'
spec.homepage = 'https://help.emarsys.com/hc/en-us/articles/115002410625'
spec.license = 'Mozilla Public License 2.0'
spec.author = { 'Emarsys Technologies' => '[email protected]' }
spec.summary = 'Emarsys iOS SDK'
spec.platform = :ios, '11.0'
spec.source = { :git => 'https://github.com/emartech/ios-emarsys-sdk.git', :tag => spec.version }
spec.source_files = [
'Core/**/*.{h,m}',
'MobileEngage/**/*.{h,m}',
'Predict/**/*.{h,m}',
'EmarsysSDK/**/*.{h,m}'
]
spec.exclude_files = 'MobileEngage/RichNotificationExtension/*'
spec.public_header_files = [
'EmarsysSDK/Emarsys.h',
'EmarsysSDK/EMSInAppProtocol.h',
'EmarsysSDK/EMSInboxProtocol.h',
'EmarsysSDK/EMSPredictProtocol.h',
'EmarsysSDK/EMSPushNotificationProtocol.h',
'EmarsysSDK/EMSBlocks.h',
'EmarsysSDK/Setup/EMSConfig.h',
'EmarsysSDK/Setup/EMSConfigBuilder.h',
'Predict/EMSCartItemProtocol.h',
'Predict/EMSCartItem.h',
'MobileEngage/IAM/EMSEventHandler.h',
'MobileEngage/Inbox/EMSNotification.h',
'MobileEngage/Inbox/EMSNotificationInboxStatus.h',
'Core/Flipper/EMSFlipperFeatures.h',
'MobileEngage/RichNotification/EMSUserNotificationCenterDelegate.h'
]
spec.libraries = 'z', 'c++'
end