-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMojoAuthSDK.podspec
34 lines (21 loc) · 1.03 KB
/
MojoAuthSDK.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
34
Pod::Spec.new do |s|
s.name = 'MojoAuthSDK'
s.version = '1.0.0'
s.summary = 'Official MojoAuth SDK for iOS to integrate User Passwordless Authentication or Social Login in your app.'
s.description = <<-DESC
MojoAuth is A Complete Passwordless Authentication Solution that simplifies user registration and social login while securing data.
The SDK provides the following
* Passwordless User Registration and Login services.
* Native Social login with facebook, google, apple provides.
DESC
s.homepage = 'https://github.com/mojoauth/ios-sdk/'
s.license = 'MIT'
s.authors = { 'MojoAuth' => '[email protected]'}
s.social_media_url = 'https://twitter.com/MojoAuth'
s.ios.deployment_target = '11.0'
s.static_framework = true
s.source = { :git => 'https://github.com/mojoauth/ios-sdk.git', :tag => "#{s.version}" }
s.source_files = ['Sources/**/*.{h,m}']
s.dependency 'FBSDKLoginKit', '~> 9.0'
s.ios.frameworks = 'Foundation', 'UIKit', 'SystemConfiguration', 'Social', 'Accounts', 'SafariServices'
end