Integrate the Entitlements SDK
Integrate the Entitlements SDK into your application
Last updated
Integrate the Entitlements SDK into your application
Last updated
To use the Entitlements SDK in an iOS app you need to install the SudoEntitlements
pod via .
If your project has not already been initialized for cocoapods, run the following command from the project's root directory
Open the Podfile file in a text editor and add
SudoEntitlements
pod as a dependency to the application
Install pod dependencies by running the following command
This will update the local CocoaPods repository and install the latest version of the Entitlements SDK.
To instantiate a client in your application, add the following
You only need one client instance for a given user per device. Instantiating multiple clients with the same configuration and using them at the same time may cause unexpected runtime errors to occur.
Add this line to the dependencies section of the app module build.gradle
and synchronize your project with Android Studio.
To instantiate a client in your application, add the following
You only need one client instance for a given user per device. Instantiating multiple clients with the same configuration and using them at the same time may cause unexpected runtime errors to occur.
The JavaScript SDK is open source and compatible with CommonJS module loading.
Add this line to the dependencies
section of your application's package.json
file.
To instantiate a client in your application, add the following
You only need one client instance for a given user per device. Instantiating multiple clients with the same configuration and using them at the same time may cause unexpected runtime errors to occur.
See it in action. Be sure to take a look at the on Github that our team published as a reference for integrating the Entitlements SDK into your app as quickly and seamlessly as possible.
In order to instantiate a Entitlements client, make sure you have followed instructions for and (see Prerequisites above)
See it in action. Be sure to take a look at the on Github that our team published as a reference for integrating the Entitlements SDK into your app as quickly and seamlessly as possible.
In order to instantiate a Entitlements client, make sure you have followed instructions for and (see Prerequisites above)
See it in action. Be sure to take a look at the on Github that our team published as a reference for integrating the Entitlements SDK into your web application as quickly and seamlessly as possible.