Distributing products globally should not be a one price fits all strategy. Get started with Mage to scale your products worldwide!
Before implementing the SDK please read and complete the integration guide on our website.
Please note that our SDK currently just works on iOS 11 and up.
$ npm install @getmageio/react-native-mage --save
On iOS run $ cd ios && pod install && cd ..
to install the native dependencies
import {Mage} from '@getmageio/react-native-mage'
We recommend initializing the Mage SDK after the app start. That way, there are no delays as soon as you want to show an in-app purchase to your user, as the current price levels are already cached in the background.
Mage.setOptions({
// Set your API key
apiKey: "YOUR_API_KEY",
// Indicate if your app is running on a consumer device.
// Please note that production should not be set to true if your app runs on real testing devices!
// Default: false
production: true,
// Optional: strict mode. The SDK will crash when errors occur.
// This way you can test if you set up the SDK correctly!
// Default: false
strict: false
})
Wherever you show in-app purchases, call getIdFromProductName
to get the in-app purchase ID for the pricing Mage recommends. This could be, for example, somewhere in your ViewController for your store view/popup. As an additional safety layer, you need to set a fallback ID. Simply use your default product as fallback ID. The fallback will recover you in case some unexpected error during the transmission might happen, so getIdFromProductName
will always return an in-app purchase ID.
Mage.getIdFromProductName("myProduct", "com.myapp.myFallBackID", (inAppPurchaseId) => {
// work with inAppPurchaseId
})
In some cases, you might want to know what the user bought so you can send it to a CRM,
your own backend or for some custom logic inside your app. getProductNameFromId
will help you out!
Mage.getProductNameFromId("com.myapp.someIapID", (err, productName) => {
if(!err){
// work with productName
}
})
Subscription status tracking is essential to adequately track the durations of your subscriptions and identify free trial and introductory price offer conversion rates. To make this feature work, you need to implement the setUserIdentifier
method so that we can identify the calls from your backend. Set the user identifier as soon as you have generated the identifier in your app.
Usually, Subscription status tracking is done on your backend or by some third party service. Apple or Google sends real-time subscription status updates that you interpret and take action on. This is why we provide a simple Web API to enable subscription lifetime value tracking for Mage. Apple or Google contacts your backend, your backend contacts Mage. Learn more about our Subscription Lifetime Value Tracking Feature.
Mage.setUserIdentifier("myUserIdentifier")
On iOS, there is no need to report a purchase since that is handled automatically. However, auto-purchase tracking is not yet implemented for Java. Whenever a user makes a purchase, you need to report it.
if (Platform.OS === 'android'){
Mage.userPurchased("com.myapp.someIapID")
}