forked from brightsoftdev/InAppPurchase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
23 lines (14 loc) · 693 Bytes
/
README
File metadata and controls
23 lines (14 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
This code will allow your app to connect to the app store's in app purchase service,
and to purchase products, and manage already purchased products.
I've also added some bells and whistles, like a progress bar for user feedback while the purchase
is in progress.
Unlike the StoreKit framework, this code will also work in the iOS simulator,
using the SimStoreKit simulator library.
CLONING
After cloning, you must initialize the git submodule:
$ git submodule init
$ git submodule update
NOTE:
Products that have already been purchased are stored in the device keychain.
For testing purchases, these entries are wiped whenever the test app
starts. Do not do this in production code!