forked from urbanairship/ios-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AirshipContentExtension.podspec
18 lines (17 loc) · 1.18 KB
/
AirshipContentExtension.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
AIRSHIP_VERSION="16.10.7"
Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
s.name = "AirshipContentExtension"
s.summary = "Airship iOS Content Extension"
s.documentation_url = "https://docs.airship.com/platform/ios"
s.homepage = "https://www.airship.com"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "Airship" => "support@airship.com" }
s.source = { :git => "https://github.com/urbanairship/ios-library.git", :tag => s.version.to_s }
s.public_header_files = "AirshipExtensions/AirshipNotificationContentExtension/Source/Public/*.h"
s.source_files = ["AirshipExtensions/AirshipNotificationContentExtension/Source/**/*.{h,m}", "AirshipExtensions/AirshipNotificationContentExtension/Source/Templates/Carousel/**/*.{h,m}", "AirshipExtensions/AirshipNotificationContentExtension/Source/Public/**/*.{h,m}"]
s.weak_frameworks = "UserNotifications"
s.module_name = "AirshipContentExtension"
s.requires_arc = true
s.ios.deployment_target = "11.0"
end