readme.txt 2.1 KB

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