Purchasely will provide the controllers (iOS) and fragments (Android) for your paywalls and will inform you about subscription events through our Webhook and integrations.
In this mode Purchasely won't consume your purchases or acknowledge purchases made.
On iOS we won't finish the transaction of your consumables that will remain in the queue if you don't do that in your code.
On Android the transactions will be cancelled and refunded after 3 days.
General overview
Implementation
1- Start the SDK
The start method must be called as soon as possible to catch every purchase / renewal.
In this mode, Purchasely will be able to display paywalls and observe transactions but will not process them and validate them with Apple and Google
The most important argument to set, besides apiKey , of course, is the runningMode in paywallObserver
The userID parameter is optional and allows you to associate the purchase to a user instead of a device. You can also set it up later if you wish to.
import io.purchasely.ext.Purchasely
Purchasely.Builder(applicationContext)
.apiKey("API_KEY")
.logLevel(LogLevel.DEBUG) // set to warning or error for release
.userId("USER_ID")
.runningMode(PLYRunningMode.PaywallObserver)
.stores(listOf(GoogleStore(), HuaweiStore()))
.build()
// When you are ready for Purchasely to initialize,
// you must call start() method that will grab configuration and products
// from the selected stores.
Purchasely.start { isConfigured ->
}
List<Store> stores = new ArrayList();
stores.add(new GoogleStore(), new HuaweiStore());
new Purchasely.Builder(getApplicationContext())
.apiKey("API_KEY")
.logLevel(LogLevel.DEBUG) // set to warning or error for release
.userId("USER_ID")
.runningMode(PLYRunningMode.Full.PaywallObserver)
.stores(stores)
.build();
// When you are ready for Purchasely to initialize,
// you must call start() method that will grab configuration and products
// from the selected stores.
Purchasely.start(isConfigured -> {
null;
});
import Purchasely from 'react-native-purchasely';
/**
* @params String apiKey
* @params StringArray stores : may be Google, Amazon and Huawei
* @params String userId
* @params Purchasley.LogLevel logLevel
* @params RunningMode runningMode
**/
Purchasely.startWithAPIKey(
'API_KEY',
['Google'],
'USER_ID',
Purchasely.logLevelDebug,
RunningMode.PaywallObserver
);
Then you must use the Paywall Actions Interceptor to perform the purchase triggered from Purchasely's paywalls with your purchase system.
Here is an example where MyPurchaseSystem is your internal subscription management system.
Purchasely.setPaywallActionsInterceptor { [weak self] (action, parameters, presentationInfos, proceed) in
switch action {
// Intercept the tap on purchase to display the terms and condition
case .purchase:
// Grab the plan to purchase
guard let plan = parameters?.plan, let appleProductId = plan.appleProductId else {
proceed(false)
return
}
MyPurchaseSystem.purchase(appleProductId) { (success, error) {
// We handle the purchase so we tell Purchasley not to handle it
proceed(false)
if success {
presentationInfos?.controller?.dismiss(animated: true, completion: nil)
}
}
default:
proceed(true)
}
}
[Purchasely setPaywallActionsInterceptor:^(enum PLYPresentationAction action, PLYPresentationActionParameters *parameters, PLYPresentationInfo *presentationInfos, void (^ proceed)(BOOL)) {
switch (action) {
// Intercept the tap on purchase to display the terms and condition
case PLYPresentationActionPurchase:{
// Grab the plan to purchase
NSString *appleProductId = parameters.plan.appleProductId;
if (appleProductId == nil) {
proceed(NO);
return;
}
[MyPurchaseSystem purchase:appleProductId completion:^(BOOL success, NSError *Error) {
// We handle the purchase so we tell Purchasely not to handle it
proceed(false);
if (success) {
[presentationInfos.controller dismissViewControllerAnimated:YES completion:nil];
}
}];
break;
}
default:
proceed(YES);
break;
}
}];
Purchasely.setPaywallActionsInterceptor((info, action, parameters, listener) -> {
switch (action) {
case PURCHASE:
Purchasely.plan("PLAN_VENDOR_ID", new PlanListener() {
@Override
public void onSuccess(@Nullable PLYPlan plan) {
MyPurchaseSystem.purchase(plan.store_product_id);
listener.processAction(false);
}
@Override
public void onFailure(@NotNull Throwable throwable) {
//display an error
listener.processAction(false);
}
});
break;
default:
listener.processAction(true);
}
});
Purchasely.setPaywallActionInterceptorCallback((result) => {
if (result.action === PLYPaywallAction.PURCHASE) {
try {
const plan = await Purchasely.planWithIdentifier('PLAN_VENDOR_ID');
//If you want to intercept it, close paywall and display your screen
Purchasely.closePaywall();
MyPurchaseSystem.purchase(plan.productId)
Purchasely.onProcessAction(false);
} catch (e) {
console.log(e);
Purchasely.onProcessAction(false);
}
} else {
Purchasely.onProcessAction(true);
}
});
Purchasely.setPaywallActionInterceptorCallback((result) => {
if (result.action === Purchasely.PaywallAction.purchase) {
Purchasely.planWithIdentifier('PLAN_VENDOR_ID', (plan) => {
//If you want to intercept it, close paywall and display your screen
Purchasely.closePaywall();
MyPurchaseSystem.purchase(plan.productId)
Purchasely.onProcessAction(false);
}, (error) => {
Purchasely.onProcessAction(false);
});
} else {
Purchasely.onProcessAction(true);
}
});
Purchasely.setPaywallActionInterceptorCallback(
(PaywallActionInterceptorResult result) {
if (result.action == PLYPaywallAction.purchase) {
try {
var plan = await Purchasely.planWithIdentifier('PLAN_VENDOR_ID');
//If you want to intercept it, close paywall and display your screen
Purchasely.closePaywall();
MyPurchaseSystem.purchase(plan.productId)
Purchasely.onProcessAction(false);
} catch (e) {
print(e);
Purchasely.onProcessAction(false);
}
} else {
Purchasely.onProcessAction(true);
}
});
4- Sync your purchases
In oberver and paywallObserver modes, when a purchase or a restoration is made with your current flow, call the synchronize() method of our SDK to send the receipt to our backend. This allow us to save the receipts on our server to prepare for your migration.
// synchronize all purchases
Purchasely.synchronize()
// or you can synchronize for the specific apple product id bought
try await Purchasely.syncPurchase(for: "apple product id")
// synchronize all purchases
[Purchasely synchronize];
// or you can synchronize for the specific apple product id bought
[Purchasely syncPurchaseFor:@"apple-product-id" completionHandler:^(NSError * _Nullable error) {
// Handle Error.
}];
Purchasely.synchronize()
Purchasely.synchronize();
Purchasely.synchronize();
Purchasely.synchronize();
5- Configure deeplinks (optional)
Paywalls can be used in many othe ways that can be: