Chapters
Table of Contents | ||||||
---|---|---|---|---|---|---|
|
Summary
If you are looking to implement in-app purchases into your iOS application, you will need to download and implement the StoreKit module. The following is a step-by-step guide to walk you through that process.
Version Information
Ti.Storekit Version 1.14.3.0 (latest here)
Install the StoreKit
- Download the StoreKit Module from the marketplace
- Create a Mobile Titanium Project
- Unzip the ti.storekit-iphone-14.13.zipDrop the ti.storekit directory in 0.zip either to ~/Library/Application Support/Titanium/modules/iphone Create a Mobile Titanium Project(globally) or in your project root (locally)
- Double Check: It should now be in ~/Library/Application Support/Titanium/modules/iphone/ti.storekit/4.3.0 or <project>/modules/iphone/ti.storekit/4.3.0
Modify the tiapp.xml file to include:
Code Block lang xml <modules> <module version="1.1">ti.<module>ti.storekit</module> </modules>
Replace the app.js file in the resources directory with the one located at ~
.1//Library/Application Support/Titanium/modules/iphone/ti.storekit/4.3.0
/example/app.js or <project>/modules/iphone/ti.storekit/4.3.0/example/app.js
Create a Test Application
...
Add Products and Test App
In the app.js file add your products to:
Code Block Ti.Storekit.requestProducts([ 'com.appcelerator.StoreKit.product1', 'com.appcelerator.StoreKit.product2' ])
- Install your provisioning file and install your app to device. (Simulator will not work)
- You should be able to make an In-App Purchase using your Test User.