-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPaystackCore.podspec
32 lines (25 loc) · 1.16 KB
/
PaystackCore.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 |s|
s.name = 'PaystackCore'
s.version = '0.0.4'
s.summary = 'The Paystack Public iOS SDK'
# TODO: Add correct descriptions
s.description = "This is an iOS library used to access Paystack APIs, etc."
s.homepage = 'https://github.com/PaystackHQ/paystack-sdk-ios'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Paystack Mobile' => 'hello@paystack.com' }
s.source = { :git => 'https://github.com/PaystackHQ/paystack-sdk-ios.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/paystack'
s.dependency 'PusherSwift', '~> 10.1.0'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = "11.0"
s.swift_versions = '5.7'
s.source_files = 'Sources/PaystackSDK/**/*.{h,m,swift}'
s.vendored_frameworks = 'PaystackPusherWrapper.xcframework'
s.resource_bundles = {
'PaystackSDK_PaystackCore' => [
'Sources/PaystackSDK/Versioning/versions.plist',
'Sources/PaystackSDK/Core/Service/Subscription/secrets.plist'
]
}
end