This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TikiClient.podspec
38 lines (31 loc) · 1.57 KB
/
TikiClient.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
Pod::Spec.new do |s|
s.name = 'TikiClient'
s.version = '0.5.0'
s.summary = 'Lean Cocoapods lib for seamless integration with TIKI Rest APIs'
s.swift_version = '5.9'
s.description = <<-DESC
The TIKI APIs comprise a set of HTTP REST APIs designed for seamless integration with any
standard HTTP client. The Client Libraries serve as a user-friendly layer around the TIKI APIs,
introducing methods for common operations such as authorization, licensing, capture, card-linked
offers, and rewards. It is a collection of pre-existing code with minimal dependencies, offering
a streamlined integration process with TIKI Rest APIs, which reduces the amount of code necessary
for integration.
TikiClient is the top-level entry point for the TIKI Client Library. It offers simple methods
that call the underlying libraries to perform common operations. Programmers can use it to
simplify the integration process or opt for individual libraries based on their specific needs.
DESC
s.homepage = 'https://mytiki.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'TIKI team' => '[email protected]' }
s.source = { :git => 'https://github.com/tiki/publish-client-ios.git', :tag => s.version.to_s }
s.ios.deployment_target = '15.0'
s.source_files = 'TikiClient/Classes/**/*'
s.dependency 'CryptoSwift'
s.dependency 'AppAuth'
s.resource_bundles = {
'TikiClientAssets' => [
'TikiClient/Assets'
],
}
s.resources = 'TikiClient/Assets'
end