Skip to main content

Installation

This guide matches AdScope Unity SDK v1.0.0 (beta). The Unity package version is 1.0.0 in Packages/com.adscope.sdk/package.json when you import that release.

Requirements

Unity

Use Unity 2021.3 LTS or newer unless your AdScope package notes specify otherwise.

Other software

KindNotes
Mediation / ad SDKWhatever stack you use for revenue and fill callbacks (e.g. AppLovin MAX).

Follow AdScope’s onboarding for credentials, configuration delivery, and any required companion services.

Add the package to your project

Use the distribution method AdScope gives you (UPM git URL, tarball, registry, etc.).

Example: Unity Package Manager (Git URL)

Example manifest.json entry (replace URL and revision with values from AdScope):

{
"dependencies": {
"com.adscope.sdk": "https://example.com/your-adscope-package.git?path=Packages/com.adscope.sdk"
}
}

Assembly reference

After import:

using AdScope;

If you use custom .asmdef assemblies, reference the assembly definitions from the AdScope package as you would for any third-party plugin.

Verify

Use the smoke test or checklist in your AdScope integration guide: configuration applied, revenue reported, key-value returned as expected.

Next steps