123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- In-application Purchasing barebone
- ===================================
- This is QT/QML project that demonstrates use of In-application Purchase API, embracing all
- possibilities the API provides : DRM protected items to sell and non-DRM protected cases.
- In try to be concise and self explanatory in the API use, the project does not implement
- anything except the API calls and response. The purpose of this project is to be collection
- of code snippets for developers who wish to use In-application Purchase API in their
- QT/QML applications
- See more information about the project at:
- http://projects.developer.nokia.com/inapp_purchasing_barebone
- INSTALLATION INSTRUCTIONS
- -------------------------------------------------------------------------------
- 1. Download and install In-application Purchase API implementation from:
- http://projects.developer.nokia.com/inapp_purchasing_barebone/files/iap_0.2.1.sis
-
- 2. Download and install the project binary from :
- http://projects.developer.nokia.com/inapp_purchasing_barebone/files/inapppurchase.sis
-
-
- RUN INSTRUCTIONS
- -------------------------------------------------------------------------------
- In-application Purchase API supports two test modes, listed below, and real payment for money:
- - Simulating both user authentication and payments
- - Testing real user authentication and simulating payments
- for more information about testing please go the link:
- https://projects.developer.nokia.com/dav/iap/doc/GUID-93ACE3B9-CDB5-48A9-83B1-5497DB4B7317.html
- NOTE: published the project binary has test mode disabled thus if you try to buy something from it
- you will be charged via your phone bill
- HOW TO ENABLE TEST MODE
- -------------------------------------------------------------------------------
- 1. Open the project profile file 'inapppurchase.pro'
- 2. Go to line (77):
- addIapFiles.sources = ./data/IAP_VARIANTID.txt #TODO: <removeme to enable testmode> ./data/TEST_MODE.txt
- 3. Remove comment "#TODO: ...." to make the line look like the following:
- addIapFiles.sources = ./data/IAP_VARIANTID.txt ./data/TEST_MODE.txt
- 4. Build and run the project
|