forked from emartech/ios-mobile-engage-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMobileEngageSDK.podspec.template
27 lines (27 loc) · 1.25 KB
/
MobileEngageSDK.podspec.template
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
Pod::Spec.new do |spec|
spec.name = 'MobileEngageSDK'
spec.version = '<VERSION_NUMBER>'
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 = 'Mobile Engage iOS SDK'
spec.platform = :ios, '9.0'
spec.source = { :git => 'https://github.com/emartech/ios-mobile-engage-sdk.git', <COMMIT_REF> }
spec.source_files = 'MobileEngage/**/*.{h,m}'
spec.exclude_files = 'MobileEngage/RichNotificationExtension/*'
spec.public_header_files = [
'MobileEngage/MobileEngage.h',
'MobileEngage/MobileEngageStatusDelegate.h',
'MobileEngage/MEConfigBuilder.h',
'MobileEngage/MEConfig.h',
'MobileEngage/Flipper/MEFlipperFeatures.h',
'MobileEngage/Inbox/MEInboxProtocol.h',
'MobileEngage/Inbox/MENotification.h',
'MobileEngage/Inbox/MENotificationInboxStatus.h',
'MobileEngage/IAM/MEInApp.h',
'MobileEngage/IAM/MEEventHandler.h',
'MobileEngage/RichNotification/MEUserNotificationCenterDelegate.h'
]
spec.dependency 'CoreSDK'
spec.libraries = 'z', 'c++'
end