Knowledge Base - Activate demo license on Cordova project

This article shows how to activate demo premium license on Cordova project:

In your index.js you can call exposed methods, in this case you can activate demo license calling RadaeePDFPlugin.activateLicense with demo parameters:

Note: the below example uses iOS demo premium license.

 

RadaeePDFPlugin.activateLicense(

{

licenseType: 2//0: for standard license, 1: for professional license, 2: for premium license

 company: "Radaee"//the company name you entered during license activation

 email: "This email address is being protected from spambots. You need JavaScript enabled to view it.", //the email you entered during license activation

 key: "89WG9I-HCL62K-H3CRUZ-WAJQ9H-FADG6Z-XEBCAO" //your license activation key

},

function(message)

{

 console.log("Success: " + message);

},

function(err){

 console.log("Failure: " + err);

}

);

To test with different license types please check:

 

Applies To

RadaeePDF SDK for Cordova

Details

Created : 2017-03-01 11:13:43, Last Modified : 2022-03-21 17:52:50