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
| What | URL |
|---|---|
| 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 dashboard | client.applixir.com |
| Support | support@applixir.com |
HTML5 / Web (recommended)
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:
- HTML5 Integration Guide — Step-by-step setup
- Test Harness — Live demo of 5 ad scenarios (incl. PBS mock-win)
WordPress
A no-code plugin for WordPress publishers — install, paste your API key, and you're live.
- WordPress Integration Guide — Plugin install & setup
- Step 1: Install & Activate
- Step 2: AppLixir Account Setup
- Step 3: Customize Settings
Unity / WebGL
For Unity games shipped to the browser, use the AppLixir Unity package.
- Unity / WebGL Integration Guide
- Unity Package (zip) —
.cs+.jslib+ sample.html
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.