-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# | ||
# Be sure to run `pod spec lint Passbase.podspec' to ensure this is a | ||
# valid spec and to remove all comments including this before submitting the spec. | ||
# | ||
# To learn more about Podspec attributes see https://docs.cocoapods.org/specification.html | ||
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ | ||
# | ||
|
||
Pod::Spec.new do |spec| | ||
|
||
spec.name = 'Passbase' | ||
spec.version = '1.7.7' | ||
spec.summary = 'Passbase helps you to uniquely identify your users.' | ||
spec.description = 'Passbase completes a facial recognition and checks for a valid government identification document to uniquely identify people.' | ||
spec.homepage = 'https://www.passbase.com' | ||
spec.license = { type: 'custom', text: 'Passbase is Copyright 2019 Passbase, Inc. It may not be modified.' } | ||
spec.author = { 'Mathias J. Klenk' => '[email protected]' } | ||
spec.platform = :ios, '10.0' | ||
spec.swift_version = '4.2' | ||
spec.source = { :git => 'https://github.com/passbase/passbase-sdk.git', :tag => spec.version.to_s } | ||
spec.requires_arc = true | ||
spec.source_files = 'Passbase/**/*.{swift}' | ||
spec.resource_bundles = { | ||
'Passbase' => ['Passbase/**/*.{storyboard,png,gif,xcassets,ttf,xib,json,strings}'] | ||
} | ||
|
||
spec.dependency 'ZoomAuthenticationHybrid', '~> 7.0.18' | ||
spec.dependency 'Sentry' | ||
spec.vendored_frameworks = 'Passbase.framework' | ||
|
||
end |