-
Notifications
You must be signed in to change notification settings - Fork 265
/
AirshipDebug.podspec
22 lines (19 loc) · 1017 Bytes
/
AirshipDebug.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
AIRSHIP_VERSION="18.12.1"
Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
s.name = "AirshipDebug"
s.summary = "Airship iOS SDK Debug Library"
s.documentation_url = "https://docs.airship.com/platform/ios"
s.homepage = "https://www.airship.com"
s.author = { "Airship" => "[email protected]" }
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.source = { :git => "https://github.com/urbanairship/ios-library.git", :tag => s.version.to_s }
s.module_name = "AirshipDebug"
s.ios.deployment_target = "14.0"
s.requires_arc = true
s.swift_version = "5.0"
s.source_files = "Airship/AirshipDebug/Source/**/*.{h,m,swift}"
s.resources = "Airship/AirshipDebug/Resources/*"
s.frameworks = 'UIKit'
s.dependency 'Airship', AIRSHIP_VERSION
end