0
votes
1answer
16 views

iOS App Beta Tester getting in-app purchase sandbox

I have in-app purchases in my app, which are live on the app store. I have sent out a new beta to my testers, and one is trying to make an in-app purchase but it is coming up with the sandbox. Is this ...
0
votes
1answer
46 views

In app purchase crash occasionally

I have in app purchase in three of my apps. The first one works fine since more than a year. In that I have this routine: -(void)purchaseProUpgrade{ SKPayment *payment = [SKPayment ...
1
vote
0answers
33 views

Does StoreKit and SKDownload guarantee integrity of finished download?

My app downloads non-consumable IAP content with StoreKit, hosted by Apple. Do I have to check the integrity of the finished download (e.g. calculate a SHA1 or MD5) or can I trust the integrity of the ...
0
votes
2answers
108 views

How to unzip a .zip file on iOS? [duplicate]

After StoreKit downloads the IAP content package it returns an NSURL to me which looks like this: ...
0
votes
0answers
29 views

How to correctly deal with failed or cancelled IAP content downloads?

I am working through the non-consumable Apple-hosted IAP examples in Ray Wenderlich's iOS 6 by tutorials book. There he suggests that the code calls finishTransaction: even when the download fails or ...
0
votes
0answers
46 views

How to solve this IAP content package uploading error in Xcode?

I'm trying to upload an Apple-hosted non-consumable IAP package via Xcode. It validates just fine. But when I attempt to submit it, I get these errors: Apple's web service operation was not ...
0
votes
0answers
26 views

Are apps with IAP allowed to remember product and pricing information for faster display upon launch?

I am attempting to cache SKProduct data retrieved from the App Store, so my app can show the information immediately after launch. It still updates in the background. Is this good practice or are we ...
0
votes
1answer
49 views

Does StoreKit handle the download of non-consumable Apple-hosted in-app purchases?

How does the download part work when the content is hosted with Apple? Does Store Kit take care of this? Does it resume interrupted downloads when transactions are resumed?
0
votes
0answers
31 views

Is it possible to test in-app purchases that use Apple's new hosting feature for downloadable content?

We're planing to use Apple's hosted content service for in-app purchases but I could not find a good resource about testing and how these downloads work.
36
votes
10answers
3k views

Annoying “[Environment: Sandbox]” alert

While testing beta versions of our iOS apps we've been recently seeing an alert with the following text only "[Environment: Sandbox]" My guess is that this is a bug in the app store process but I ...
0
votes
0answers
30 views

Using StoreKit to sell apps within the application

I am using StoreKit to show the App Store within my application in order to promote another app (which is mine as well). Will the user be able to buy the promoted application when I publish the app ...
0
votes
2answers
106 views

iOS In-App Purchases restore previous purcases safely

I have implemented an In-App Purchase in my app and I have two questions about it. This is the code I use: - (IBAction)buyProduct1:(id)sender { SKPayment *payment = [SKPayment ...
0
votes
3answers
162 views

Detect Cancel Button Tap for “Confirm Your In-App Purchase” UIAlert

I implemented in-app purchase based on this tutorial. The problem I experience is that I cannot detect when Cancel button is pressed on the "Confirm Your In-App Purchase" alert, which is a part of ...
0
votes
1answer
107 views

SKStoreProductViewController can't download app

i am using SKStoreProductViewController, if i try to download app using real account alert says that i must use test user, but when i use test user the result is below app should released tomorrow ...
2
votes
2answers
160 views

Does SKStoreProductViewController allow to update app?

Couldn't find any information regarding this... if I launch a SKStoreProductViewController instance from within my app, feeding it the iTunes URL of that app, does it allow for app updates? In other ...
0
votes
1answer
92 views

iOS In App Purchase Not returning all products

After I was able to get my In App Purchase helper class to work for 1 product, I tried to add additional products to my app. It has been more than 2 days and the code (in sandbox) is still returning 1 ...
0
votes
2answers
133 views

Multiple SKPaymentTransaction

I implemented StoreKit into my application. What I noticed is that for some of my test accounts, there are multiple SKPaymentTransaction's in the paymentQueue. This is causing the ...
1
vote
0answers
76 views

In App Purchase Not getting productList

I have registered my products for In App Purchase. I created a sample app for getting the products. Its working just fine. When I integrated that code in my existing app I am getting empty product ...
3
votes
2answers
272 views

iOS - Not all my In-App Purchases are showing up in iTunesConnect

I have a rather odd, yet serious, problem, and I haven't been able to find anyone with a similar scenario. I have an app which has options for three in-app purchases. Inside, ...
0
votes
0answers
47 views

Pdf's as in app purchase. What's the ways to handle it after restore purchases button is pressed?

My In-App purchases are pdfs. I handled single presenting pdf after buy via UIDocumentInteractionController. [_docController presentPreviewAnimated:YES]; But now I've to implement restore purchases ...
1
vote
0answers
113 views

should productsRequest:didReceiveResponse: run when there is no internet connection?

Im implementing a store in my iphone game. When I have an internet connection is seems to work perfectly. However, When I turn my phone to airplane mode to test the store with no internet ...
0
votes
1answer
97 views

iOS give users default downloadable content

I'm facing this problem while designing my iOS app. Suppose that a user purchases an app and downloads it to the iPhone. I would like to provide him with a default consumable item the first time he ...
6
votes
1answer
218 views

SKStoreproductviewcontroller truncated in landscape mode

I've just added SKStoreProductViewController and presented it from my own UIViewController. If I rotate device to landscape mode - only header fits the width, other parts are truncated .... ...
0
votes
1answer
89 views

Restoring an in app purchase

When an in app purchase is restored, the following delegate method is called: -(void)paymentQueueRestoreCompletedTransactionsFinished:(SKPaymentQueue *)queue { NSLog(@"%@", queue.transactions); ...
0
votes
1answer
197 views

Advertisements not removed after IAP unless app is restarted?

In my app, there is code that, if a button is pressed the user can upgrade the app and remove the advertisements, it calls the MKStoreKit and once the user purchases the upgrade, the adverts do remain ...
0
votes
1answer
95 views

iOS in-app purhcase keeping track of items purchased

I am new to the world of in-app purchase and I just watched the tutorial on iTunes about how to integrate it to my app. I am wondering how the developer would keep track of the items purchased WITHOUT ...
3
votes
1answer
276 views

In-app purchase tracking with Google Analytics iOS SDK

I would like to track in-app purchases with the Google Analytics SDK for iOS v2, as indicated in their Ecommerce Tracking guide. I'm currently doing the following after receiving a ...
0
votes
1answer
108 views

SKProductRequest doesn't fail without connection

I'd would like to handle the case in which in-app purchase products are requested without an internet connection. When testing this case both in the simulator and a device (by turning off the wi-fi), ...
1
vote
0answers
156 views

App crash on [[SKPaymentQueue defaultQueue] addTransactionObserver:observer];

That's all I can get from the crash when I do in the applicationDidBecomeActive MyStoreObserver * observer = [[MyStoreObserver alloc] initWithContext:self.managedObjectContext andDelegate:self]; ...
0
votes
1answer
93 views

In-App Purchase - Know When User Clicks 'Buy'

I'm trying to show/hide an activity indicator at appropriate times during the transaction process, and I'd like to show the activity indicator after the user clicks 'Buy' on the confirmation alert. ...
0
votes
1answer
120 views

Request Product in Store Kit not working

Hi I am using store kit in titanium.I am using this code Ti.App.storekit=require('ti.storekit'); Ti.App.storekit.requestProduct('553XXXXXX.testproductname', function (product) { var ...
0
votes
1answer
79 views

SKStoreViewController Sandbox issue

int productID = xxx; NSDictionary *parameters = @{SKStoreProductParameterITunesItemIdentifier:[NSNumber numberWithInteger:productID]}; [self.storeViewController ...
1
vote
3answers
667 views

In-App Purchase Auto-renewable Subscriptions

I have an app that sells Virtual Phone Numbers. When an user subscribes, we deliver a new virtual number and the user can manage this number within the app. After that, the user can receive calls but ...
0
votes
0answers
29 views

How to sort products by time In App Purchases?

I want to sort a list of products based on the date they were uploaded to the iTunes Store, is it possible? I know how to sort by price but no date. Is there any way to know the exact date of rise? ...
6
votes
2answers
1k views

app can't be installed with SKStoreProductViewController

With codes below SKStoreProductViewController can present descriptions of an app. When I touch the "free" button it shows "install app". Then I touch "install app", a progress bar shows inside the ...
7
votes
0answers
1k views

SKStoreProductViewController and GKHostedAuthenticateViewController don't have iPhone landscape modes

I'm implementing the StoreKit in-app app purchase interface and though it appears that the SKStoreProductViewController handles landscape on iPad, it does not appear to do so for my app on iPhone ...
3
votes
1answer
173 views

In-App purchase , Cancel the purchase because of long processing time

I was implementing In-App purchase to my game and its working fine. No problem with the purchases and other stuffs. But today i was stuck at a weird point. When the user tries to purchase , ...
0
votes
1answer
106 views

Unexpected behaviour with iAP on iOS

I make a fresh install of my App on my iOS device. (I had deleted it, signed off from the GC account). After the App launch, 'paymentQueue: updatedTransactions:' gets called. It has one transaction ...
2
votes
1answer
509 views

Registration should be always optional on non-renewing subscription?

I plan to use non-renewing subscription on SaaS app since apple doesn't allow auto-renewable for SaaS. Apple also requires us to provide a server side mechanism to track the subscription with ...
0
votes
1answer
313 views

Track non-renewing subscription with OAuth login?

Apple reject non-renewing subscription apps which doesn't provide user/password server side function to track the subscription. I plan to implement Login and Signup Views with Parse.com. ...
0
votes
1answer
275 views

SKProductRequest delegate not being called

I know this must be a rather common issue, but I've literally scoured the internet and tried dozens of solutions, of no avail so far... I'm at the end of my wits with this :P So, I'm implementing ...
0
votes
0answers
56 views

iOS - Help me understand multiple targets and in-app upgrades/purchases

Ok guys, go easy on me please. Ive been trolling this board for years and have gotten so much help I cant even begin to think where I would be without it. So thanks for the years of help! I have ...
3
votes
2answers
1k views

app is asking for AppleID when being run

I am updating my iOS app with the Apple suggested transaction VerificationController code to verify in-app purchases due to the recent "hack" published that allowed people to purchase in-ap purchases ...
2
votes
2answers
123 views

In-app purchase: get the App Store from which a user made a purchase

Is it possible to tell if a purchase was made in the UK / US store for example?
3
votes
1answer
630 views

paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions is not called while restoreCompletedTransactions

Hi I need to implement the restore functionality in Inapp-Purchase, for this made a button "Restore" which is calling method -(void)restorePurchasedProductsWithProductId:(NSString*)prodID { ...
1
vote
1answer
274 views

Failing receipt verification

I'm trying to create a lib that will verify StoreKit receipts connecting straight to Apples servers, without a 3rd party server. This is possible since Apple recommends you first verify against the ...
0
votes
2answers
693 views

Restoring In App purchase without 'buy' prompt? Is it possible?

I currently have my in-app purchase 'restore' button, It does work, but essentially it asks the user mid way through the process to 'buy' the upgrade (just like it would have on a normal in-app) I am ...
1
vote
1answer
731 views

Inapppurchase SKProductsRequest Crash my application in ios5

my store kit class crash for SKProductsRequest start i am not experienced inapppurchase concept my class working perfectly in iOS 4.3 sdk not iOS 5 sdk. i am not getting error on console and my ...
0
votes
1answer
50 views

Differentiating between products for in-app iTunes

If I purchase a product, I call it using the product identifier(name) and then save the required details in NSUserDefaults. This way, I can unlock features whenever required after purchase. But if I ...
2
votes
1answer
1k views

StoreKit restoreCompletedTransactions doesn't return any transactions

I've purchased a non-consumable product using my test user, but when I call this: [[SKPaymentQueue defaultQueue] restoreCompletedTransactions]; I don't see any transactions in ...

1 2 3 4