Last active
December 20, 2015 07:49
-
-
Save HeshamMegid/6096502 to your computer and use it in GitHub Desktop.
iOS podspec for MKStoreKit-cop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'MKStoreKit-cop' | |
s.version = '5.0' | |
s.license = { :type => 'MIT', | |
:text => 'MKStoreKit uses MIT Licensing And so all of my source code can | |
be used royalty-free into your app. Just make sure that you don’t | |
remove the copyright notice from the source code if you make your | |
app open source and in the about page.' } | |
s.summary = 'In-App Purchases StoreKit for iOS devices.' | |
s.homepage = 'https://github.com/Coppertino/MKStoreKit' | |
s.author = { 'Mugunth Kumar' => '[email protected]' } | |
s.source = { :git => 'https://github.com/Coppertino/MKStoreKit.git', :branch => "master" } | |
s.platform = :ios, '5.0' | |
s.source_files = '*.{h,m}', 'Externals/*.{h,m}' | |
s.requires_arc = true | |
s.frameworks = 'StoreKit', 'Security', 'IOKit', 'SystemConfiguration' | |
s.dependency 'SSKeychain' | |
s.dependency 'AFNetworking' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment