-
Notifications
You must be signed in to change notification settings - Fork 806
Expand file tree
/
Copy pathSwiftyStoreKit.podspec
More file actions
18 lines (18 loc) · 906 Bytes
/
SwiftyStoreKit.podspec
File metadata and controls
18 lines (18 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'SwiftyStoreKit'
s.version = '0.16.5'
s.summary = 'Lightweight In App Purchases Swift framework for iOS, tvOS, watchOS, macOS and Mac Catalyst.'
s.license = 'MIT'
s.homepage = 'https://github.com/bizz84/SwiftyStoreKit'
s.author = { 'Andrea Bizzotto' => 'bizz84@gmail.com' }
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '10.0'
s.swift_version = '5.0'
s.source = { :git => "https://github.com/bizz84/SwiftyStoreKit.git", :tag => s.version }
s.source_files = 'Sources/SwiftyStoreKit/*.{swift}'
s.screenshots = ["https://github.com/bizz84/SwiftyStoreKit/raw/master/Screenshots/Preview.jpg"]
s.resource_bundles = {'package_info_plus_privacy' => ['SwiftyStoreKit/Resources/PrivacyInfo.xcprivacy']}
s.requires_arc = true
end