-
Notifications
You must be signed in to change notification settings - Fork 0
i.Add the Extension
First step is always to add the extension to your development environment. To do this use the tutorial located here.
The Core ANE is required by this ANE. You must include and package this extension in your application.
The Core ANE doesn't provide any functionality in itself but provides support libraries and frameworks used by our extensions. It also includes some centralised code for some common actions that can cause issues if they are implemented in each individual extension.
You can access this extension here: https://github.com/distriqt/ANE-Core.
You can use the isSupported
flag to determine if this extension is supported on the current platform and device.
This allows you to react to whether the functionality is available on the device and provide an alternative solution if not.
if (TenjinSDK.isSupported)
{
// Functionality here
}