Using the License Key in Other Languages

If you’re using PSPDFKit in a cross-platform framework, you need to convert the licenses (which are provided in the form of Swift and Objective-C examples) to another language first. This article explains how to use the license key in other languages.

ℹ️ Note: To use PSPDFKit inside your cross-platform project, you first need a valid license key. The license key can be obtained in the PSPDFKit Portal (for existing customers), or by following the link inside the PSPDFKit demo email.

Obtaining the License Key

Our license integration guides explain how to integrate the license into an app that’s written in Swift or Objective-C. If you want to add the license in another programming language, here’s how to do it.

The license code you get from the PSPDFKit Portal or the demo email is similar to this:

PSPDFKit.SDK.setLicenseKey("PQmgAnmE1GsqwrY8nV2Gaq4g9wcg8XDF3p9ymbsw1npPclRg9Wsd3FQZXF2s4OT9BeiKk6g9sutdcy9032sgf8afm432wkq50SrGfi71CDuJCoVdIbF6Zj+BIYeaz38ghlFfydfMOFlfd4H5t0y")
[PSPDFKitGlobal setLicenseKey:@"PQmgAnmE1GsqwrY8nV2Gaq4g9wcg8XDF3p9ymbsw1npPclRg9Wsd3FQZXF2s4OT9BeiKk6g9sutdcy9032sgf8afm432wkq50SrGfi71CDuJCoVdIbF6Zj+BIYeaz38ghlFfydfMOFlfd4H5t0y"];

Using the License Key in Apache Cordova and Ionic

In Cordova and Ionic, you can set your license key like this:

PSPDFKit.setLicenseKey(
	'PQmgAnmE1GsqwrY8nV2Gaq4g9wcg8XDF3p9ymbsw1npPclRg9Wsd3FQZXF2s4OT9BeiKk6g9sutdcy9032sgf8afm432wkq50SrGfi71CDuJCoVdIbF6Zj+BIYeaz38ghlFfydfMOFlfd4H5t0y',
);

Using the License Key in Flutter

To set the license key in Flutter, use this:

// To set the license key for both platforms, use:
await Pspdfkit.setLicenseKeys("YOUR_FLUTTER_ANDROID_LICENSE_KEY_GOES_HERE", "YOUR_FLUTTER_IOS_LICENSE_KEY_GOES_HERE");

Using the License Key in React Native

To set the license key in React Native, use this:

// To set the license key for both platforms, use:
PSPDFKit.setLicenseKeys("YOUR_REACT_NATIVE_ANDROID_LICENSE_KEY_GOES_HERE", "YOUR_REACT_NATIVE_IOS_LICENSE_KEY_GOES_HERE");

Using the License Key in Xamarin

In Xamarin, you can set your license key like this:

PSPDFKitGlobal.SetLicenseKey("PQmgAnmE1GsqwrY8nV2Gaq4g9wcg8XDF3p9ymbsw1npPclRg9Wsd3FQZXF2s4OT9BeiKk6g9sutdcy9032sgf8afm432wkq50SrGfi71CDuJCoVdIbF6Zj+BIYeaz38ghlFfydfMOFlfd4H5t0y");