-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathFRUI.podspec
39 lines (34 loc) · 1.51 KB
/
FRUI.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
37
38
39
#
# Be sure to run `pod lib lint FRUI.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 = 'FRUI'
s.version = '4.7.0'
s.summary = 'ForgeRock UI SDK for FRAuth iOS'
s.description = <<-DESC
FRUI is a SDK that allows you easily and quickly develop an application with ForgeRock Platform or ForgeRock Identity Cloud, and FRAuth SDK with pre-built UI components. FRUI SDK demonstrates most of functionalities available in FRAuth SDK which includes user authentication, registration, and identity and access management against ForgeRock solutions.
DESC
s.homepage = 'https://www.forgerock.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'ForgeRock'
s.static_framework = true
s.source = {
:git => 'https://github.com/ForgeRock/forgerock-ios-sdk.git',
:tag => s.version.to_s
}
s.module_name = 'FRUI'
s.swift_versions = ['5.0', '5.1']
s.ios.deployment_target = '12.0'
base_dir = "FRUI/FRUI"
s.source_files = base_dir + '/**/*.swift', base_dir + '/**/*.c', base_dir + '/**/*.h'
s.resource_bundles = {
'FRUI' => [base_dir + '/*.xcprivacy']
}
s.resources = [base_dir + '/**/*.xib']
s.ios.dependency 'FRDeviceBinding', '~> 4.7.0'
s.ios.dependency 'FRCaptchaEnterprise', '~> 4.7.0'
end