This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
KinUX.podspec
42 lines (34 loc) · 1.6 KB
/
KinUX.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
40
41
#
# Spec for KinUX
#
Pod::Spec.new do |s|
s.name = 'KinUX'
s.version = '2.1.3'
s.summary = 'UX Library for Kin SDK iOS'
s.description = <<-DESC
The KinUX library provides an out of the box model UI for spending Kin within an iOS application. Specificy what you're buying, your account, tap confirm. Success.
DESC
s.homepage = 'https://github.com/kinecosystem/kin-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kin Developers' => '[email protected]' }
s.source = { :git => 'https://github.com/kinecosystem/kin-ios.git'}
s.ios.deployment_target = '9.0'
s.swift_version = '5.0'
s.source_files = 'KinUX/KinUX/Src/**/*'
s.dependency 'KinBase', '~> 2.1.3'
s.dependency 'KinDesign', '~> 2.1.3'
# Dependencies needed for KinGrpcApi
s.dependency 'gRPC-ProtoRPC'
s.dependency 'Protobuf'
s.pod_target_xcconfig = {
# This is needed by all pods that depend on Protobuf:
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 GPB_GRPC_FORWARD_DECLARE_MESSAGE_PROTO=1',
# This is needed by all pods that depend on gRPC-RxLibrary:
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
# This is needed for the user Podfile to use_framework! https://github.com/CocoaPods/CocoaPods/issues/4605
'USE_HEADERMAP' => 'NO',
'ALWAYS_SEARCH_USER_PATHS' => 'NO',
'USER_HEADER_SEARCH_PATHS' => '$(PODS_ROOT)/KinGrpcApi/KinGrpcApi/gen',
'HEADER_SEARCH_PATHS' => '$(PODS_ROOT)/KinGrpcApi/KinGrpcApi/gen'
}
end