UNPKG

6.44 kBPlain TextView Raw
1#
2# Be sure to run `pod spec lint CybavoWalletService.podspec' to ensure this is a
3# valid spec and to remove all comments including this before submitting the spec.
4#
5# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
6# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
7#
8
9Pod::Spec.new do |s|
10
11 # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
12 #
13 # These will help people to find your library, and whilst it
14 # can feel like a chore to fill in it's definitely to your advantage. The
15 # summary should be tweet-length, and the description more in depth.
16 #
17
18 s.name = "CybavoWalletService"
19 s.version = "1.0.1"
20 s.summary = "CYBAVO Wallet App SDK"
21
22 # This description is used to generate tags and improve search results.
23 # * Think: What does it do? Why did you write it? What is the focus?
24 # * Try to keep it short, snappy and to the point.
25 # * Write the description between the DESC delimiters below.
26 # * Finally, don't worry about the indent, CocoaPods strips it!
27 s.description = <<-DESC
28 Use CYBAVO Wallet App SDK to easily develop secure wallets for your users
29 without having to code any cryptography on your side. Our SDK allows you
30 to perform the most common operations, such as creating a wallet, querying
31 balances and executing cryptocurrency payments.
32 DESC
33
34 s.homepage = "https://www.cybavo.com/wallet-app-sdk/"
35 # s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
36
37
38 # ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
39 #
40 # Licensing your code is important. See http://choosealicense.com for more info.
41 # CocoaPods will detect a license file if there is a named LICENSE*
42 # Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
43 #
44
45 # s.license = "MIT (example)"
46 s.license = { :type => "BSD", :file => "LICENSE" }
47
48 if s.respond_to? 'swift_version'
49 s.swift_version = '5.0'
50 end
51 if s.respond_to? 'swift_versions'
52 s.swift_versions = ['5.0']
53 end
54 # ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
55 #
56 # Specify the authors of the library, with email addresses. Email addresses
57 # of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
58 # accepts just a name if you'd rather not provide an email address.
59 #
60 # Specify a social_media_url where others can refer to, for example a twitter
61 # profile URL.
62 #
63
64 s.author = { "CYBAVO" => "dev@cybavo.com" }
65
66 # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
67 #
68 # If this Pod runs only on iOS or OS X, then specify the platform and
69 # the deployment target. You can optionally include the target after the platform.
70 #
71
72 # s.platform = :ios
73 s.platform = :ios, "11.0"
74
75 # When using multiple platforms
76 # s.ios.deployment_target = "5.0"
77 # s.osx.deployment_target = "10.7"
78 # s.watchos.deployment_target = "2.0"
79 # s.tvos.deployment_target = "9.0"
80
81
82 # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
83 #
84 # Specify the location from where the source should be retrieved.
85 # Supports git, hg, bzr, svn and HTTP.
86 #
87
88 s.source = { :git => '' }
89
90
91 # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
92 #
93 # CocoaPods is smart about how it includes source code. For source files
94 # giving a folder will include any swift, h, m, mm, c & cpp files.
95 # For header files it will include any header in the folder.
96 # Not including the public_header_files will make all headers public.
97 #
98
99 s.source_files = "**/*.{h,m,swift}"
100 s.exclude_files = "Classes/Exclude"
101
102 # s.public_header_files = "Classes/**/*.h"
103
104
105 # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
106 #
107 # A list of resources included with the Pod. These are copied into the
108 # target bundle with a build phase script. Anything else will be cleaned.
109 # You can preserve files from being cleaned, please don't preserve
110 # non-essential files like tests, examples and documentation.
111 #
112
113 # s.resource = "icon.png"
114 # s.resources = "Resources/*.png"
115 # s.resources = ['**/*.nib']
116
117 # s.preserve_paths = "FilesToSave", "MoreFilesToSave"
118
119
120 # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
121 #
122 # Link your library with frameworks, or libraries. Libraries do not include
123 # the lib prefix of their name.
124 #
125
126 #s.framework = "React"
127 # s.framework = "CYBAVOWallet"
128 # s.frameworks = "SomeFramework", "AnotherFramework"
129
130 # s.library = "iconv"
131 # s.libraries = "iconv", "xml2"
132
133
134 # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
135 #
136 # If your library depends on compiler flags you can set them in the xcconfig hash
137 # where they will only apply to your library. If you depend on other Podspecs
138 # you can include multiple dependencies to ensure it works.
139
140 # s.requires_arc = true
141
142 # s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
143 s.dependency "CYBAVOWallet", "~> 1.2.224"
144 s.dependency "React"
145end