-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWEContentExtension.podspec
More file actions
23 lines (21 loc) · 1.22 KB
/
WEContentExtension.podspec
File metadata and controls
23 lines (21 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'WEContentExtension'
s.version = '1.1.3'
s.summary = 'Extension Target SDK for adding WebEngage Rich Push Notifications support'
s.description = <<-DESC
This pod includes various subspecs which are intended for use in Application Extensions, and depends on APIs which are App Extension Safe. The Core subspecs provides APIs which lets you track Users and Events from within Application Extensions.
DESC
s.homepage = 'https://webengage.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.social_media_url = 'http://twitter.com/webengage'
s.author = { 'WebEngage' => 'mobile@webengage.com' }
s.source = { :git => 'https://github.com/WebEngage/WEContentExtension.git', :tag => s.version.to_s }
s.source_files = 'Sources/WEContentExtension/**/*'
s.documentation_url = 'https://docs.webengage.com/docs/ios-getting-started'
s.platform = :ios
s.swift_version = '5.0'
s.ios.deployment_target = '12.0'
s.frameworks = 'Foundation'
s.weak_frameworks = 'UserNotifications', 'UserNotificationsUI'
s.resource_bundles = { 'WEContentExtension' => 'Sources/WEContentExtension/Resources/*.{xcprivacy}' }
end