-
Notifications
You must be signed in to change notification settings - Fork 27
/
DocuSign-framework.podspec
33 lines (29 loc) · 1.8 KB
/
DocuSign-framework.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
27
28
29
30
31
32
33
# Be sure to run `pod lib lint DocuSign.podspec' to ensure this is a
# valid spec before submitting.
Pod::Spec.new do |s|
s.name = 'DocuSign-framework'
s.version = '2.7.0'
s.summary = 'DocuSign Native iOS Framework to sign and send in your iOS apps'
s.description = <<-DESC
DocuSign Native iOS Framework to sign and send in your iOS apps:
- The DocuSign Native iOS SDK is compatible with both Swift and Objective-C applications.
- Easily integrate DocuSign’s platform into your app with access to existing templates.
- Sign and complete any document-based transaction, whether you’re online or where connectivity may be unreliable or nonexistent.
- Custom fields in your templates are seamlessly populated with your own app’s data, which could include customer or contact information.
DESC
s.homepage = 'https://github.com/docusign/native-ios-sdk'
s.screenshots = 'https://developers.docusign.com/docs/ios-sdk/images/signature-phone.png', 'https://developers.docusign.com/docs/ios-sdk/images/fields.png'
s.license = { :type => 'DOCUSIGN SOFTWARE LICENSE AGREEMENT', :file => 'LICENSE.txt' }
s.author = { 'DocuSign' => 'devcenter@docusign.com' }
s.social_media_url = 'https://twitter.com/DocuSignAPI'
s.platform = :ios, '10.0'
s.ios.deployment_target = '10.0'
s.requires_arc = true
s.preserve_paths = 'DocuSignSDK.framework'
s.public_header_files = 'DocuSignSDK.framework/Headers/*.h'
s.vendored_frameworks = 'DocuSignSDK.framework'
s.resource = 'DocuSignSDK.framework/DocuSignSDK.bundle'
# Update the source path for new release
s.source = { :http => "https://github.com/docusign/native-ios-sdk/raw/release/2.7/DocuSignSDK-framework.zip"}
s.source_files = 'DocuSignSDK.framework/Headers/*.h'
end