forked from ForgeRock/forgerock-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FRAuthenticator.podspec
36 lines (31 loc) · 1.4 KB
/
FRAuthenticator.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
35
36
#
# Be sure to run `pod lib lint FRAuthenticator.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 = 'FRAuthenticator'
s.version = '4.5.0'
s.summary = 'ForgeRock OTP/Push Authentication SDK for iOS'
s.description = <<-DESC
FRAuthenticator is a SDK that allows you easily and quickly develop an application with ForgeRock Platform for OATH and Push Authentication with AM. FRAuthenticator SDK provides interfaces and functionalities of HMAC-based OTP, Time-based OTP, Push Registration and Authentication with AM.
DESC
s.homepage = 'https://www.forgerock.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'ForgeRock'
s.source = {
:git => 'https://github.com/ForgeRock/forgerock-ios-sdk.git',
:tag => s.version.to_s
}
s.module_name = 'FRAuthenticator'
s.swift_versions = ['5.0', '5.1']
s.ios.deployment_target = '12.0'
base_dir = "FRAuthenticator/FRAuthenticator"
s.source_files = base_dir + '/**/*.swift', base_dir + '/**/*.c', base_dir + '/**/*.h'
s.resource_bundles = {
'FRAuthenticator' => [base_dir + '/*.xcprivacy']
}
s.ios.dependency 'FRCore', '~> 4.5.0'
end