-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCastle.podspec
26 lines (21 loc) · 1 KB
/
Castle.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
Pod::Spec.new do |s|
s.name = 'Castle'
s.version = '3.0.13'
s.summary = 'Castle SDK for iOS'
s.description = <<-DESC
Castle for iOS provides a simple way to integrate Castle into your app.
DESC
s.homepage = 'https://castle.io'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Castle Intelligence' => '[email protected]' }
s.source = { :git => 'https://github.com/castle/castle-ios.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/castle_io'
s.platform = :ios
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.ios.frameworks = 'Security', 'CoreTelephony', 'UIKit', 'SystemConfiguration', 'CoreMotion', 'CoreLocation'
s.ios.vendored_frameworks = 'Castle/Highwind.xcframework', 'Castle/GeoZip.xcframework'
s.source_files = 'Castle/{Internal,Public}/*{h,m}'
s.resource_bundles = {"Castle" => ["Castle/PrivacyInfo.xcprivacy"]}
s.swift_version = '5.2'
end