-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApplePayButton.podspec
More file actions
30 lines (25 loc) · 1.07 KB
/
ApplePayButton.podspec
File metadata and controls
30 lines (25 loc) · 1.07 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
Pod::Spec.new do |s|
s.name = "ApplePayButton"
s.version = "1.0.3"
s.summary = "The ApplePayButton iOS SDK makes it quick and easy to build an Apple Pay button in your iOS app."
s.description = <<-DESC
The ApplePayButton iOS SDK makes it quick and easy to build an Apple Pay button in your iOS app.
1. Easy to add in project.
2. Light weight library.
DESC
s.homepage = "https://github.com/Maninder1991/ApplePayButton.git"
s.license = { :type => 'Copyright', :text => <<-LICENSE
Copyright 2023
Permission is granted to ApplePayButton
LICENSE
}
s.author = { "Maninder" => "er.maninderbindra@gmail.com" }
s.source = { :git => "https://github.com/Maninder1991/ApplePayButton.git", :tag => "#{s.version}" }
s.resource_bundles = {
'AppleButton' => ['Source/apple_button.png','Source/stc_button.png']
}
s.source_files = "Source/*.swift"
s.platform = :ios
s.swift_version = "5.0"
s.ios.deployment_target = '12.0'
end