-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOmPaySDK.podspec
32 lines (21 loc) · 1017 Bytes
/
OmPaySDK.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
Pod::Spec.new do |spec|
spec.name = "OmPaySDK"
spec.version = "1.0.1"
spec.summary = "Om pay sdk is a payment SDK. Use it for payment purposes."
spec.description = "Om pay SDK is a payment SDK that enables secure payment checkout."
spec.homepage = "https://github.com/mmdHussain/OmPaySDK"
spec.license = { :type => "MIT", :file => "LICENSE.md" }
spec.author = { "Mohammed" => "[email protected]" }
spec.platform = :ios, "5.0"
spec.ios.deployment_target = "14.0"
spec.swift_versions = '5.0'
spec.source = { :git => "https://github.com/mmdHussain/OmPaySDK.git", :tag => "#{spec.version}" }
spec.source_files = 'OmPaySDK/**/*.{swift, plist}'
spec.resources = 'OmPaySDK/**/*.{storyboard,xib,xcassets,json,png}'
spec.exclude_files = "Classes/Exclude"
spec.dependency 'Alamofire'
spec.dependency 'IQKeyboardManager'
spec.dependency 'Toast-Swift'
spec.dependency 'SkyFloatingLabelTextField'
spec.dependency 'SwiftyJSON'
end