forked from moengage/MoEngage-iOS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMoEngageCards.podspec
33 lines (27 loc) · 1.44 KB
/
MoEngageCards.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
Pod::Spec.new do |s|
s.name = 'MoEngageCards'
s.version = '2.0.1'
s.summary = 'MoEngage Cards Campaigns for iOS'
s.description = <<-DESC
Create targeted or automated App Inbox/NewsFeed messages that can be grouped into various categories, and target your users with different updates or offers that can stay in the Inbox/Feed over a designated period of time.
DESC
s.homepage = 'https://www.moengage.com'
s.documentation_url = 'https://docs.moengage.com/docs/ios-cards'
s.license = { :type => 'Commercial', :file => 'LICENSE' }
s.author = { 'Chengappa C D' => '[email protected]' }
s.social_media_url = 'https://twitter.com/moengage'
s.platform = :ios
s.ios.deployment_target = '10.0'
s.source = {
:git => 'https://github.com/moengage/MoEngage-iOS-SDK.git',
:tag => 'cards-' + s.version.to_s
}
s.ios.vendored_frameworks = 'Frameworks/MOCards.framework'
s.preserve_paths = 'Frameworks/MOCards.framework'
s.module_map = 'Frameworks/MOCards.framework/Modules/module.modulemap'
s.requires_arc = true
s.frameworks = 'Foundation', 'UIKit', 'ImageIO'
s.dependency 'MoEngage-iOS-SDK', '>= 7.0.0', '< 7.1.0'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end