forked from MKSG-MugunthKumar/MKStoreKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCAMKStoreKit.podspec
More file actions
32 lines (21 loc) · 1.04 KB
/
CAMKStoreKit.podspec
File metadata and controls
32 lines (21 loc) · 1.04 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
31
32
Pod::Spec.new do |s|
s.name = "CAMKStoreKit"
s.version = "5.0.11"
s.summary = "My fork of MKStoreKit"
s.description = <<-DESC
My fork of MKStoreKit. It has only the features I'm interested in.
This was created because the MKStoreKit seems abandoned but I still use it in my apps.
Support was lacking for the new methods of IAP where purchases can be deferred until a parent approves them.
Also there were bugs to do with 64 bit code.
DESC
s.homepage = "http://www.cushwayapps.com"
s.license = { :type => 'Private', :file => 'licence.md' }
s.author = { "Alan Cushway" => "acushway@hotmail.com" }
s.platform = :ios, "15.0"
s.source = { :git => "https://github.com/acushway/MKStoreKit.git", :tag => s.version.to_s }
s.source_files = "*.{h,m}", "**/*.{h,m}"
s.exclude_files = ".gitignore", "MKStoreKitConfigs.plist", "README.mdown"
s.public_header_files = "*.h"
s.framework = "StoreKit"
s.requires_arc = true
end