forked from urbanairship/ios-library
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAirshipServiceExtension.podspec
More file actions
20 lines (19 loc) · 1.05 KB
/
AirshipServiceExtension.podspec
File metadata and controls
20 lines (19 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
AIRSHIP_VERSION="18.14.2"
Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
s.name = "AirshipServiceExtension"
s.summary = "Airship iOS Service 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.source_files = "AirshipExtensions/AirshipNotificationServiceExtension/Source/**/*.{swift}"
s.weak_frameworks = "UserNotifications"
s.module_name = "AirshipServiceExtension"
s.requires_arc = true
s.ios.deployment_target = "14.0"
s.watchos.deployment_target = "7.0"
s.swift_versions = "5.0"
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
end