MKStoreKit icon indicating copy to clipboard operation
MKStoreKit copied to clipboard

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

Results 54 MKStoreKit issues
Sort by recently updated
recently updated
newest added

I am trying to translate the class into Swift to get rid of the regularly occurring issues and to eventually share it here for the hopeful benefit of everyone. Though,...

When I include the MKStoreKit files in my project I get error: reporting all `extern NSString *const` as: > Unknown type name 'NSString'. That does not stop compilation from completing,...

line 418: if ([[NSDate date] timeIntervalSince1970] > [expiresDateMs doubleValue]) should read: if ([[NSDate date] timeIntervalSince1970] > [expiresDateMs doubleValue]/1000.)

I am currently working with Auto-renewbalae subscription.My problem is that after completing successful purchasing i print the purchase details.but it return null. The Purchase details is like that Purchased/Subscribed to...

To promote in-app purchases on your product page, your app needs to support a delegate method in SKPaymentTransactionObserver.

On line: if ([[NSDate date] timeIntervalSince1970] > [expiresDateMs doubleValue]) { The expiresDateMs is milliseconds but the first one is in seconds.

I have received _startValidatingAppStoreReceiptWithCompletionHandler_ error from 7 users in 2 hours that never happened before. What is going on?

notification for auto-renew subscription never fires if subscription expires

I've implemented **MKStoreKit** successfully and get notifications successfully after purchasing. But I'm not able to get transactionID & receipt from parameter `note`. ``` [[NSNotificationCenter defaultCenter] addObserverForName:kMKStoreKitProductPurchasedNotification object:nil queue:[[NSOperationQueue alloc] init]...