-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathElepay_StripeApplePay_Plugin.podspec
25 lines (21 loc) · 1.28 KB
/
Elepay_StripeApplePay_Plugin.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
Pod::Spec.new do |s|
s.name = "Elepay_StripeApplePay_Plugin"
s.version = "0.1.0"
s.summary = "This is a plugin framework working with ElepaySDK for iOS."
s.description = <<-DESC
Elepay_StripeApplePay_Plugin is a plugin framework working with elepay iOS SDK.
This framework dose NOT work by itself but need to be installed with `pod 'ElepaySDK'` together.
The elepay iOS SDK makes it easy to build a stable and secure multi-channel payment experience in your iOS app.
DESC
s.homepage = "https://www.elepay.io"
s.license = { :type => "Copyright", :text => "Copyright ELESTYLE, Inc. All Rights Reserved." }
s.author = { "ELESTYLE, Inc." => "info@elestyle.jp" }
s.platform = :ios, "11.0"
s.swift_versions = ['5.4.2']
s.source = { :git => "https://github.com/elestyle/elepay-stripeapplepay-plugin.git", :tag => "#{s.version}" }
s.vendored_frameworks = "Elepay_StripeApplePay_Plugin.xcframework"
s.requires_arc = true
# https://github.com/CocoaPods/CocoaPods/issues/10065#issuecomment-694266259
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end