-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathClaySDK.podspec
More file actions
30 lines (25 loc) · 1.56 KB
/
Copy pathClaySDK.podspec
File metadata and controls
30 lines (25 loc) · 1.56 KB
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
27
28
29
30
#
# Be sure to run `pod lib lint ClaySDK.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'ClaySDK'
s.version = '1.9.1'
s.summary = 'The Clay mobile SDK make it easy to build a seamless door opening experience in your application.'
s.description = <<-DESC
This SDK for iOS contains the most up-to-date frameworks for integrating Mobile Key technology into your own iOS applications. It will setup the necessary security to communicate with Connect API, and unlock locks with encrypted Mobile Keys returned by the Connect API. The SDK for iOS includes iOS libraries, developer documentation and a sample Xcode project to get you up and running quickly and easily.
DESC
s.homepage = 'https://my-clay.com/developers/mobile-sdk-introduction/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Jakov' => 'jakov@my-clay.com' , 'Roberto' => 'roberto@my-clay.com'}
s.source = { :git => 'https://github.com/ClaySolutions/ClaySDK.git', :tag => s.version.to_s }
s.swift_version = '5.4'
s.ios.deployment_target = '11'
s.vendored_frameworks = 'ClaySDK.xcframework'
s.dependency 'VirgilSDK', '7.2.1'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end