In-App Purchase Module
The In-App Purchase module adds automatic tracking of in-app purchases to your app.
What is an in-app purchase?
An in-app purchase is additional content, services, or a subscription that you buy inside the app. Some examples of in-app purchases include:
- Upgrade to remove ads
- Game credits
- Virtual currency
- Extra game levels
- Unlock more features
Examples of purchases that are not considered in-app purchases include:
- Purchasing clothes or other items in an e-commerce app.
- Using Apple Pay to complete a purchase.
Learn more about in-app purchases in the Apple developer portal.
Install
Install the In-App Purchase module with Swift Package Manager, CocoaPods, or Carthage.
Swift Package Manager (Recommended)
Swift Package Manager is the recommended way to install the Tealium Swift library:
- In your Xcode project, select File > Add Package Dependencies.
- Enter the repository URL:
https://github.com/tealium/tealium-swift
. - Configure the version rules. The default,
"Up to next major"
, is recommended. If the current Tealium Swift library version does not appear in the list, reset your Swift package cache. - Select the
InAppPurchase
module from the list of modules to install. Add the module to each of your app targets in your Xcode project under Frameworks and Libraries.
Learn more about the Swift Package Manager installation for iOS.
CocoaPods
To install the In-App Purchase module with CocoaPods, add the following pod to your Podfile:
pod 'tealium-swift/InAppPurchase'
Learn more about the CocoaPods installation for iOS.
Carthage
Follw these steps to install the In-App Purchase module with Carthage:
- Navigate to the General configuration pane for the target app in Xcode.
- Add the following framework to the Embedded Binaries section:
TealiumInAppPurchase.xcframework
- To import the In-App Purchase library, add the following import statement to your project:
import TealiumInAppPurchase
Learn more about the Carthage installation for iOS.
Configure
To instantiate the In-App Purchase module, you must specify it in your TealiumConfig
object when initializing the SDK:
import TealiumCore
import TealiumInAppPurchase
let config = TealiumConfig(account: "ACCOUNT",
profile: "PROFILE",
environment: "ENVIRONMENT",
datasource: "DATASOURCE")
config.collectors = [Collectors.InAppPurchase]
tealium = Tealium(config: config) { _ in }
Review the Collectors documentation to understand how to correctly specify the collectors you require.
Data Layer
The In-App Purchase module sends the following attributes in the event:
Variable | Description | Example |
---|---|---|
purchase_order_id |
The order ID of the purchase. | “1234567890” |
purchase_timestamp |
The timestamp of the purchase in ISO 8601 format. | “2022-01-17T14:42:28Z” |
purchase_quantity |
The total number of items purchased. | “1” |
purchase_skus |
An array of the product IDs purchased. | [“com.example.level1”] |
autotracked |
Set to true to indicate that the event was tracked automatically. |
true |
tealium_event |
The name of the event. | “in_app_purchase” |
This page was last updated: August 26, 2024