Skip to main content
Downloads & SamplesUpdated May 20

Downloads & Samples

Everything you need to ship AppLixir rewarded video — direct CDN URLs, sample integrations, and a hosted test harness. Pick your platform below.

Quick reference

WhatURL
v6 Web SDK (live CDN)https://cdn.applixir.com/applixir.app.v6.1.0.js
Test harness (live demo of all scenarios)test.applixirads.com
Publisher dashboardclient.applixir.com
Supportsupport@applixir.com

The fastest path. The v6 SDK is hosted on our CDN — no download needed, just drop the script tag:

<!-- Anchor for the player -->
<div id="applixir-ad-container"></div>

<!-- v6 SDK from our CDN -->
<script src="https://cdn.applixir.com/applixir.app.v6.1.0.js"></script>

<script>
initializeAndOpenPlayer({
apiKey: "xxxx-xxxx-xxxx-xxxx",
adStatusCallbackFn: (status) => {
if (status.type === "complete") grantReward();
}
});
</script>

Resources:


WordPress

A no-code plugin for WordPress publishers — install, paste your API key, and you're live.


Unity / WebGL

For Unity games shipped to the browser, use the AppLixir Unity package.


Cocos

For Cocos Creator games:


iOS

For native iOS apps:


Android

For native Android apps:


Sample HTML5 integration

A complete working example — drop the SDK, place an anchor div, trigger an ad on a button click, and grant a reward when it completes.

<!DOCTYPE html>
<html>
<head>
<title>AppLixir Sample</title>
</head>
<body>
<button id="watchBtn">Watch ad for 50 coins</button>
<div id="applixir-ad-container"></div>

<script src="https://cdn.applixir.com/applixir.app.v6.1.0.js"></script>
<script>
document.getElementById('watchBtn').addEventListener('click', () => {
initializeAndOpenPlayer({
apiKey: "YOUR-API-KEY-HERE",
adStatusCallbackFn: (status) => {
if (status.type === "complete") {
// Grant the reward (optimistic UI)
console.log("+50 coins!");
// Reconcile with your server webhook for the authoritative grant
}
}
});
});
</script>
</body>
</html>

See the HTML5 Overview for the canonical event types, the preload pattern, and the server-side webhook flow.


Need a different format?

If you need the SDK in a format we don't list here (NPM package, ES module, specific framework wrapper), email support@applixir.com — we can usually accommodate.