Notify when the app is ready
The SDK needs to display messages above your UI. It can be the continuation of a purchase started on the App Store, the result from a notification linking to our product, …
Your app needs to tell Purchasely SDK when it is ready to be covered by our UI.
This is done to handle cases like:
- a loading screen that dismisses upon completion
- an on boarding that needs to be displayed before purchasing
- a subscribe process mandatory for app usage
When your app is ready, call the following method and the SDK will handle the continuation of whatever was in progress (purchase, push message, …)
Swift
Objective-C
Kotlin
Java
React Native
Cordova
Flutter
Unity
// Call me in your viewDidAppear
Purchasely.readyToOpenDeeplink(true)
[Purchasely readyToOpenDeeplink: true];
Purchasely.readyToOpenDeeplink = true
Purchasely.setReadyToOpenDeeplink(true);
Purchasely.readyToOpenDeeplink(true);
Purchasely.readyToOpenDeeplink(true);
Purchasely.readyToOpenDeeplink(true);
private PurchaselyRuntime.Purchasely _purchasely;
_purchasely.SetReadyToOpenDeeplink(true);
You can set it back to false when the app goes in the background when you have a screen that blocks UI in background mode and that is dismissed when the app is in foreground (like in banking apps).
Last modified 29d ago