-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrazorpay-turbo-custom.podspec
More file actions
57 lines (50 loc) · 2.12 KB
/
razorpay-turbo-custom.podspec
File metadata and controls
57 lines (50 loc) · 2.12 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#
# Be sure to run `pod lib lint razorpay-turbo-pod.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 = 'razorpay-turbo-custom'
s.version = "2.1.8"
s.summary = "CocoaPod implementation of Razorpay's Turbo in-app UPI Payments"
s.description = <<-DESC
Razorpay is a payments platform for e-commerce businesses in India. Razorpay
helps businesses accepts online payments via Credit Card, Debit Card, Net banking
and Wallets from their end customers. Razorpay provides a secure link between
merchant website, various issuing institutions, acquiring Banks and the payment
networks. Razorpay is a developer oriented payment gateway and focuses on
essentials such as 24x7 support, one line integration code and checkout
experiences that are very customer friendly.
DESC
s.homepage = 'https://github.com/razorpay/razorpay-turbo-custom'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'ramprasadAnand' => 'ramprasad.a@razorpay.com' }
s.source = { :git => 'https://github.com/razorpay/razorpay-turbo-custom.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'
s.subspec 'Core' do |core|
core.vendored_frameworks = [
'Pod/core/CommonLibrary.framework',
'Pod/core/Sentry.framework',
'Pod/core/two_party.framework'
]
end
s.subspec 'headless' do |headless|
headless.vendored_frameworks = [
'Pod/headless/RazorpayTurboUPI.framework',
'Pod/headless/TurboUpiPlugin.framework'
]
headless.dependency 'razorpay-turbo-custom/Core'
headless.dependency 'razorpay-customui-pod'
end
s.subspec 'ui' do |ui|
ui.vendored_frameworks = [
'Pod/ui/RazorpayTurboUPIUI.framework',
'Pod/ui/TurboUpiPluginUI.framework'
]
ui.dependency 'razorpay-turbo-custom/Core'
ui.dependency 'razorpay-customui-pod'
end
end