Documentation Index
Fetch the complete documentation index at: https://guide.daro.so/llms.txt
Use this file to discover all available pages before exploring further.
Before You Begin
Prepare these items before installing DARO Unity SDK:- iOS or Android app key from the DARO dashboard
- Platform-specific DARO key file
- Ad unit IDs for each ad format
- Android or iOS build environment
Install SDK
UseDaroPackageInstaller.unitypackage for the recommended installation path.
Download Installer Package
Download
DaroPackageInstaller.unitypackage.zip, then unzip it.Import into Unity Project
In Unity Editor, select Assets > Import Package > Custom Package, then import
DaroPackageInstaller.unitypackage.Confirm Package Installation
The installer adds the OpenUPM scoped registry, EDM4U, and
so.daro.unity dependency to Packages/manifest.json.The latest so.daro.unity package version is 0.1.0 and uses EDM4U [email protected].Configure Project
In Unity Editor, open Daro > Integration Manager and enter platform settings.Enter iOS Settings
For iOS builds, enter
iOS Daro App Key, iOS Key File, AdMob App ID, and ATT prompt text.Initialize SDK
CallDaroSdk.InitializeAsync() when your app starts.
Use Ad Instances
Use each ad instance in this order:- Complete
await DaroSdk.InitializeAsync(). - Create the ad instance.
- Register event handlers.
- Call
Load(). - After load completes, check
IsReady()and callShow(). - Call
Dispose()when the screen closes.

