Associating content
Introducing Content Ids
Implementation
let paywallCtrl = Purchasely.presentationController(with: "my_presentation_id",
contentId: "my_content_id",
completion: { (result, plan) in
})
present(paywallCtrl, animated: true)UIViewController *paywallCtrl = [Purchasely presentationControllerWith:@"my_presentation_id"
contentId:@"my_content_id"
completion:^(enum PLYProductViewControllerResult result, PLYPlan * _Nullable plan) {
}];
[self presentViewController:paywallCtrl animated:YES completion:nil];Purchasely.presentationView(
context = context,
properties = properties
) { result, plan ->
}Purchasely.presentationView(context, properties,
new ProductViewResultListener() {
@Override
public void onResult(@NotNull PLYProductViewResult result, @Nullable PLYPlan plan) {
}
});Security concerns
Last updated