• This repository has been archived on 04/Mar/2020
  • Stars
    star
    2,096
  • Rank 21,228 (Top 0.5 %)
  • Language
    Objective-C
  • Created over 13 years ago
  • Updated almost 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The "Goto" In App Purchases Framework for iOS 8+

#MKStoreKit

This is version 6.1 of MKStoreKit. iOS 8+ only. MKStoreKit 6 is a complete revamp is not API compatible with previous versions of MKStoreKit. Refactoring should however be fairly simple.

The code base is still in early beta. Use with caution

The library contains just three files, MKStoreKit.h/m and MKStoreKitConfigs.plist The MKStoreKit is a singleton class that takes care of everything. Just drag these four files into the project. You then have to initialize it by calling [[MKStoreKit sharedKit] startProductRequest] in your application:didFinishLaunchingWithOptions. From then on, it does the magic. The MKStoreKit purchases, remembers and even handles remote validation of auto-renewable subscriptions.

Features

  • Super simple in app purchasing
  • Built-in support for remembering your purchases
  • Built-in receipt validation (remote)
  • Built-in virtual currency manager
  • Built-in Hosted Content Download Manager

Sample Code

The Sample Code shows how to use MKStoreKit.

###Config File Format MKStoreKit uses a config file, MKStoreKitConfigs.plist for managing your product identifiers. The config file is a Plist dictionary containing three keys, "Consumables", "Others" and "SharedSecret"

Consumables is the key where you provide a list of consumables in your app that should be managed as a virtual currency. Others is the key where you provide a list of in app purchasable products SharedSecret is the key where you provide the shared secret generated on your iTunesConnect account.

###Initialization

Initialization is as simple as calling In Objective-C

[[MKStoreKit sharedKit] startProductRequest]

In Swift

    MKStoreKit.sharedKit().startProductRequest()

A sample initializiation code that you can add to your application:didFinishLaunchingWithOptions: is below In Objective-C

  [[MKStoreKit sharedKit] startProductRequest];
  
  [[NSNotificationCenter defaultCenter] addObserverForName:kMKStoreKitProductsAvailableNotification
                                                    object:nil
                                                     queue:[[NSOperationQueue alloc] init]
                                                usingBlock:^(NSNotification *note) {
    
    NSLog(@"Products available: %@", [[MKStoreKit sharedKit] availableProducts]);
  }];
  
  
  [[NSNotificationCenter defaultCenter] addObserverForName:kMKStoreKitProductPurchasedNotification
                                                    object:nil
                                                     queue:[[NSOperationQueue alloc] init]
                                                usingBlock:^(NSNotification *note) {
                                                  
                                                  NSLog(@"Purchased/Subscribed to product with id: %@", [note object]);
                                                }];
  
  [[NSNotificationCenter defaultCenter] addObserverForName:kMKStoreKitRestoredPurchasesNotification
                                                    object:nil
                                                     queue:[[NSOperationQueue alloc] init]
                                                usingBlock:^(NSNotification *note) {
                                                  
                                                  NSLog(@"Restored Purchases");
                                                }];
  
  [[NSNotificationCenter defaultCenter] addObserverForName:kMKStoreKitRestoringPurchasesFailedNotification
                                                    object:nil
                                                     queue:[[NSOperationQueue alloc] init]
                                                usingBlock:^(NSNotification *note) {
                                                  
                                                  NSLog(@"Failed restoring purchases with error: %@", [note object]);
                                                }];

In Swift

    MKStoreKit.sharedKit().startProductRequest()
    NSNotificationCenter.defaultCenter().addObserverForName(kMKStoreKitProductsAvailableNotification,
      object: nil, queue: NSOperationQueue.mainQueue()) { (note) -> Void in
        print(MKStoreKit.sharedKit().availableProducts)
    }

    NSNotificationCenter.defaultCenter().addObserverForName(kMKStoreKitProductPurchasedNotification,
      object: nil, queue: NSOperationQueue.mainQueue()) { (note) -> Void in
        print ("Purchased product: \(note.object)")
    }

###Checking Product Status You can check if a product was previously purchased using -isProductPurchased as shown below.

if([MKStoreManager isProductPurchased:productIdentifier]) {
//unlock it
}

You can check for a product's expiry date using -expiryDateForProduct as shown below.

if([MKStoreManager expiryDateForProduct:productIdentifier]) {
//unlock it
}

Warning: This method will return [NSNull null] for products that are not auto-renewing subscriptions.

###Making a Purchase To purchase a feature or to subscribe to a auto-renewing subscription, just call

[[MKStoreKit sharedKit] initiatePaymentRequestForProductWithIdentifier:productIdentifier];

Observe kMKStoreKitProductPurchasedNotification to get notified when the purchase completes

  [[NSNotificationCenter defaultCenter] addObserverForName:kMKStoreKitProductPurchasedNotification
                                                    object:nil
                                                     queue:[[NSOperationQueue alloc] init]
                                                usingBlock:^(NSNotification *note) {
                                                  
                                                  NSLog(@"Purchased/Subscribed to product with id: %@", [note object]);
                                                  
                                                  NSLog(@"%@", [[MKStoreKit sharedKit] valueForKey:@"purchaseRecord"]);
                                                }];

It can't get simpler than this!

Missing Features

  • Keychain support for products
  • Local receipt verification using asn1c

Untested Features

  • Non-renewing subscriptions
  • Free subscriptions for news stand
  • Mac OS X support

These three features might work, but they are not tested yet.

###Licensing

MKStoreKit is licensed under MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


###Attribution free licensing In case you need attribution free licensing for MKNetworkKit, you can buy one from my license store.

More Repositories

1

MKNetworkKit

Modern NSURLSession based Networking Framework with built in authentication and HTTP 1.1 caching standards support for iOS 8+ devices
Objective-C
3,066
star
2

MKiCloudSync

Sync your NSUserDefaults to iCloud automatically
Objective-C
531
star
3

UIKitCategoryAdditions

Block based Category additions for AlertView and ActionSheets
Objective-C
300
star
4

MKHorizMenuDemo

Demo of MKHorizMenu a simple, drop-in replacement for the Three20 fame horizontal menus used in news apps
Objective-C
258
star
5

MKInfoPanelDemo

Non-modal, non-intrusive Info Panel implementation as seen on some "popular" apps
Objective-C
192
star
6

LocationWithoutPrompt

A proof of concept to show how easy it is to get coarse location of the user without using Core Location
Swift
126
star
7

MKFoundation

MKFoundation is a bunch of foundation classes that you can use in your application
Objective-C
114
star
8

MKBlockTimer

Measure the time taken to execute a block of codeโ€ฆ usingโ€ฆ blocks!
Objective-C
107
star
9

MKTickerViewDemo

A drop-in control for creating stock tickers in your app
Objective-C
97
star
10

MKNetworkKit-Swift

A Pure Swift Implementation of MKNetworkKit. This is the Swift Networking framework you will ever need.
Swift
88
star
11

LocalNotifications

Creating Local Notifications on iOS 4
Objective-C
82
star
12

MKEntryPanelDemo

Entry Panel UI
Objective-C
68
star
13

DeviceHelper

Helper class to identify capabilities of a iOS device
Objective-C
54
star
14

Gravatar

Objective-C Gravatar API
Objective-C
47
star
15

CurlNSMutableURLRequestDemo

Prints your NSMutableURLRequests as a equivalent curl command.
Objective-C
22
star
16

SwiftLogger

A Logging framework for Swift
Swift
18
star
17

GoldenRatioColorDemo

Generate Random Colors using the Golden Ratio
Objective-C
13
star
18

third-party-json-adapters

Third Party JSON Adapters for NSJSONSerialization in iOS 5
Objective-C
12
star
19

MKDocumentSync

Sync your Documents directory with iCloud in a single line of code. #NOT
Objective-C
7
star
20

GoldenRatioColors

Generate aesthetically random colors
Swift
4
star
21

MK-UndoCloseTab

Undo your closed tabs with this simple chrome extension
2
star
22

UITextViewAttributedStringBug

This is the sample code illustrating the Radar 15159094
Objective-C
1
star
23

mugunthkumar.github.com

Pages
1
star